Skip to content

Commit 24f5b01

Browse files
committed
output from v3.2.0
1 parent 92535a6 commit 24f5b01

File tree

9,036 files changed

+63294
-61434
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,036 files changed

+63294
-61434
lines changed

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRBase64BinaryPrimitive.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -82,7 +82,7 @@ class FHIRBase64BinaryPrimitive implements PHPFHIRPrimitiveTypeInterface
8282
private const _VALIDATION_RULES = [];
8383

8484
/** @var array */
85-
private array $_primitiveXmlLocations = [];
85+
private array $_xmlLocations = [];
8686

8787
/**
8888
* FHIRBase64BinaryPrimitive Constructor

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRBinary.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -90,7 +90,7 @@ class FHIRBinary implements PHPFHIRCommentContainerInterface, PHPFHIRContainedTy
9090
];
9191

9292
/** @var array */
93-
private array $_primitiveXmlLocations = [];
93+
private array $_xmlLocations = [];
9494

9595
/**
9696
* FHIRBinary Constructor
@@ -160,10 +160,10 @@ public function setContentType(null|string|FHIRStringPrimitive $contentType = nu
160160
$contentType = new FHIRStringPrimitive($contentType);
161161
}
162162
$this->_trackValueSet($this->contentType, $contentType);
163-
if (!isset($this->_primitiveXmlLocations[self::FIELD_CONTENT_TYPE])) {
164-
$this->_primitiveXmlLocations[self::FIELD_CONTENT_TYPE] = [];
163+
if (!isset($this->_xmlLocations[self::FIELD_CONTENT_TYPE])) {
164+
$this->_xmlLocations[self::FIELD_CONTENT_TYPE] = [];
165165
}
166-
$this->_primitiveXmlLocations[self::FIELD_CONTENT_TYPE][0] = $xmlLocation;
166+
$this->_xmlLocations[self::FIELD_CONTENT_TYPE][0] = $xmlLocation;
167167
$this->contentType = $contentType;
168168
return $this;
169169
}
@@ -187,10 +187,10 @@ public function setId(null|string|FHIRIdPrimitive $id = null, PHPFHIRXmlLocation
187187
$id = new FHIRIdPrimitive($id);
188188
}
189189
$this->_trackValueSet($this->id, $id);
190-
if (!isset($this->_primitiveXmlLocations[self::FIELD_ID])) {
191-
$this->_primitiveXmlLocations[self::FIELD_ID] = [];
190+
if (!isset($this->_xmlLocations[self::FIELD_ID])) {
191+
$this->_xmlLocations[self::FIELD_ID] = [];
192192
}
193-
$this->_primitiveXmlLocations[self::FIELD_ID][0] = $xmlLocation;
193+
$this->_xmlLocations[self::FIELD_ID][0] = $xmlLocation;
194194
$this->id = $id;
195195
return $this;
196196
}
@@ -315,21 +315,21 @@ public function xmlSerialize(null|PHPFHIRXmlWriter $xw = null, null|int|PHPFHIRC
315315
$openedRoot = true;
316316
$xw->openRootNode($config, 'Binary', $this->_getSourceXmlns());
317317
}
318-
$locs = $this->_primitiveXmlLocations[self::FIELD_CONTENT_TYPE] ?? [];
318+
$locs = $this->_xmlLocations[self::FIELD_CONTENT_TYPE] ?? [];
319319
if (([] === $locs || (isset($locs[0]) && PHPFHIRXmlLocationEnum::ATTRIBUTE === $locs[0])) && null !== ($v = $this->getContentType())) {
320320
$xw->writeAttribute(self::FIELD_CONTENT_TYPE, $v->getFormattedValue());
321321
}
322-
$locs = $this->_primitiveXmlLocations[self::FIELD_ID] ?? [];
322+
$locs = $this->_xmlLocations[self::FIELD_ID] ?? [];
323323
if (([] === $locs || (isset($locs[0]) && PHPFHIRXmlLocationEnum::ATTRIBUTE === $locs[0])) && null !== ($v = $this->getId())) {
324324
$xw->writeAttribute(self::FIELD_ID, $v->getFormattedValue());
325325
}
326-
$locs = $this->_primitiveXmlLocations[self::FIELD_CONTENT_TYPE] ?? [];
326+
$locs = $this->_xmlLocations[self::FIELD_CONTENT_TYPE] ?? [];
327327
if (([] === $locs || (isset($locs[0]) && PHPFHIRXmlLocationEnum::ELEMENT === $locs[0])) && null !== ($v = $this->getContentType())) {
328328
$xw->startElement(self::FIELD_CONTENT_TYPE);
329329
$v->xmlSerialize($xw, $config);
330330
$xw->endElement();
331331
}
332-
$locs = $this->_primitiveXmlLocations[self::FIELD_ID] ?? [];
332+
$locs = $this->_xmlLocations[self::FIELD_ID] ?? [];
333333
if (([] === $locs || (isset($locs[0]) && PHPFHIRXmlLocationEnum::ELEMENT === $locs[0])) && null !== ($v = $this->getId())) {
334334
$xw->startElement(self::FIELD_ID);
335335
$v->xmlSerialize($xw, $config);

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRBooleanPrimitive.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -82,7 +82,7 @@ class FHIRBooleanPrimitive implements PHPFHIRPrimitiveTypeInterface
8282
private const _VALIDATION_RULES = [];
8383

8484
/** @var array */
85-
private array $_primitiveXmlLocations = [];
85+
private array $_xmlLocations = [];
8686

8787
/**
8888
* FHIRBooleanPrimitive Constructor

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRCodePrimitive.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -86,7 +86,7 @@ class FHIRCodePrimitive implements PHPFHIRPrimitiveTypeInterface
8686
];
8787

8888
/** @var array */
89-
private array $_primitiveXmlLocations = [];
89+
private array $_xmlLocations = [];
9090

9191
/**
9292
* FHIRCodePrimitive Constructor

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRDatePrimitive.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -86,7 +86,7 @@ class FHIRDatePrimitive implements PHPFHIRPrimitiveTypeInterface
8686
];
8787

8888
/** @var array */
89-
private array $_primitiveXmlLocations = [];
89+
private array $_xmlLocations = [];
9090

9191
/**
9292
* FHIRDatePrimitive Constructor

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRDateTimePrimitive.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -86,7 +86,7 @@ class FHIRDateTimePrimitive implements PHPFHIRPrimitiveTypeInterface
8686
];
8787

8888
/** @var array */
89-
private array $_primitiveXmlLocations = [];
89+
private array $_xmlLocations = [];
9090

9191
/**
9292
* FHIRDateTimePrimitive Constructor

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRDecimalPrimitive.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -82,7 +82,7 @@ class FHIRDecimalPrimitive implements PHPFHIRPrimitiveTypeInterface
8282
private const _VALIDATION_RULES = [];
8383

8484
/** @var array */
85-
private array $_primitiveXmlLocations = [];
85+
private array $_xmlLocations = [];
8686

8787
/**
8888
* FHIRDecimalPrimitive Constructor

src/DCarbone/PHPFHIRGenerated/DSTU1/FHIRElement.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* This class was generated with the PHPFHIR library (https://github.com/dcarbone/php-fhir) using
77
* class definitions from HL7 FHIR (https://www.hl7.org/fhir/)
88
*
9-
* Class creation date: August 22nd, 2024 02:47+0000
9+
* Class creation date: August 30th, 2024 22:23+0000
1010
*
1111
* PHPFHIR Copyright:
1212
*
@@ -102,7 +102,7 @@ class FHIRElement implements PHPFHIRCommentContainerInterface, PHPFHIRTypeInterf
102102
];
103103

104104
/** @var array */
105-
private array $_primitiveXmlLocations = [];
105+
private array $_xmlLocations = [];
106106

107107
/**
108108
* FHIRElement Constructor
@@ -231,10 +231,10 @@ public function setId(null|string|FHIRIdPrimitive $id = null, PHPFHIRXmlLocation
231231
$id = new FHIRIdPrimitive($id);
232232
}
233233
$this->_trackValueSet($this->id, $id);
234-
if (!isset($this->_primitiveXmlLocations[self::FIELD_ID])) {
235-
$this->_primitiveXmlLocations[self::FIELD_ID] = [];
234+
if (!isset($this->_xmlLocations[self::FIELD_ID])) {
235+
$this->_xmlLocations[self::FIELD_ID] = [];
236236
}
237-
$this->_primitiveXmlLocations[self::FIELD_ID][0] = $xmlLocation;
237+
$this->_xmlLocations[self::FIELD_ID][0] = $xmlLocation;
238238
$this->id = $id;
239239
return $this;
240240
}
@@ -353,7 +353,7 @@ public function xmlSerialize(null|PHPFHIRXmlWriter $xw = null, null|int|PHPFHIRC
353353
$openedRoot = true;
354354
$xw->openRootNode($config, 'Element', $this->_getSourceXmlns());
355355
}
356-
$locs = $this->_primitiveXmlLocations[self::FIELD_ID] ?? [];
356+
$locs = $this->_xmlLocations[self::FIELD_ID] ?? [];
357357
if (([] === $locs || (isset($locs[0]) && PHPFHIRXmlLocationEnum::ATTRIBUTE === $locs[0])) && null !== ($v = $this->getId())) {
358358
$xw->writeAttribute(self::FIELD_ID, $v->getFormattedValue());
359359
}
@@ -362,7 +362,7 @@ public function xmlSerialize(null|PHPFHIRXmlWriter $xw = null, null|int|PHPFHIRC
362362
$v->xmlSerialize($xw, $config);
363363
$xw->endElement();
364364
}
365-
$locs = $this->_primitiveXmlLocations[self::FIELD_ID] ?? [];
365+
$locs = $this->_xmlLocations[self::FIELD_ID] ?? [];
366366
if (([] === $locs || (isset($locs[0]) && PHPFHIRXmlLocationEnum::ELEMENT === $locs[0])) && null !== ($v = $this->getId())) {
367367
$xw->startElement(self::FIELD_ID);
368368
$v->xmlSerialize($xw, $config);

0 commit comments

Comments
 (0)