Skip to content

Commit

Permalink
Add DV_SCALE cast mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed Jul 22, 2021
1 parent 20695a5 commit 10eda37
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
use BigPictureMedical\OpenEhr\Rm\DataTypes\Quantity\DvCount;
use BigPictureMedical\OpenEhr\Rm\DataTypes\Quantity\DvProportion;
use BigPictureMedical\OpenEhr\Rm\DataTypes\Quantity\DvQuantity;
use BigPictureMedical\OpenEhr\Rm\DataTypes\Quantity\DvScale;
use BigPictureMedical\OpenEhr\Rm\DataTypes\Text\DvCodedText;
use BigPictureMedical\OpenEhr\Rm\DataTypes\Text\DvText;
use BigPictureMedical\OpenEhr\TypeableDataTransferObjectCaster;
Expand Down Expand Up @@ -49,6 +50,7 @@ public function boot(): void
TypeableDataTransferObjectCaster::map('DV_DURATION', DvDuration::class);
TypeableDataTransferObjectCaster::map('DV_PROPORTION', DvProportion::class);
TypeableDataTransferObjectCaster::map('DV_QUANTITY', DvQuantity::class);
TypeableDataTransferObjectCaster::map('DV_SCALE', DvScale::class);
TypeableDataTransferObjectCaster::map('DV_TEXT', DvText::class);
TypeableDataTransferObjectCaster::map('ELEMENT', Element::class);
TypeableDataTransferObjectCaster::map('EVALUATION', Evaluation::class);
Expand Down

0 comments on commit 10eda37

Please sign in to comment.