-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating namespace and package so it can be included in packagist.
- Loading branch information
Showing
33 changed files
with
179 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Enum; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Enum; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
|
||
/** | ||
* Class BaseObjectTypeEnum | ||
* @package PHPFHIR\ClassGenerator\Enum | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Enum | ||
*/ | ||
class BaseObjectTypeEnum extends Enum | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Enum; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Enum; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
|
||
/** | ||
* Class ComplexClassTypesEnum | ||
* @package PHPFHIR\ClassGenerator\Enum | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Enum | ||
*/ | ||
class ComplexClassTypesEnum extends Enum | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Enum; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Enum; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
|
||
/** | ||
* Class ElementTypeEnum | ||
* @package PHPFHIR\ClassGenerator\Enum | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Enum | ||
*/ | ||
class ElementTypeEnum extends Enum | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Enum; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Enum; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
|
||
/** | ||
* Class PHPScopeEnum | ||
* @package PHPFHIR\ClassGenerator\Enum | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Enum | ||
*/ | ||
class PHPScopeEnum extends Enum | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Enum; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Enum; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
|
||
/** | ||
* Class PrimitivePropertyTypesEnum | ||
* @package PHPFHIR\ClassGenerator\Enum | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Enum | ||
*/ | ||
class PrimitivePropertyTypesEnum extends Enum | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Enum; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Enum; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
|
||
/** | ||
* Class SimpleClassTypesEnum | ||
* @package PHPFHIR\ClassGenerator\Enum | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Enum | ||
*/ | ||
class SimpleClassTypesEnum extends Enum | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,13 +16,13 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Generator\ClassGenerator; | ||
use PHPFHIR\ClassGenerator\Template\AutoloaderTemplate; | ||
use PHPFHIR\ClassGenerator\Template\ParserMapTemplate; | ||
use PHPFHIR\ClassGenerator\Utilities\CopyrightUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\FileUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\XMLUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Generator\ClassGenerator; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\AutoloaderTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\ParserMapTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\CopyrightUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\FileUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\XMLUtils; | ||
|
||
/** | ||
* Class Generator | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Generator; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Generator; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,15 +16,15 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Enum\ElementTypeEnum; | ||
use PHPFHIR\ClassGenerator\Template\ClassTemplate; | ||
use PHPFHIR\ClassGenerator\Utilities\PrimitiveTypeUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\XMLUtils; | ||
use PHPFHIR\ClassGenerator\XSDMap; | ||
use DCarbone\PHPFHIR\ClassGenerator\Enum\ElementTypeEnum; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\ClassTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\PrimitiveTypeUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\XMLUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\XSDMap; | ||
|
||
/** | ||
* Class ClassGenerator | ||
* @package PHPFHIR\ClassGenerator\Utilities | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Utilities | ||
*/ | ||
abstract class ClassGenerator | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Generator; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Generator; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,16 +16,16 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Template\ClassTemplate; | ||
use PHPFHIR\ClassGenerator\Template\GetterMethodTemplate; | ||
use PHPFHIR\ClassGenerator\Template\ParameterTemplate; | ||
use PHPFHIR\ClassGenerator\Template\PropertyTemplate; | ||
use PHPFHIR\ClassGenerator\Template\SetterMethodTemplate; | ||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\ClassTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\GetterMethodTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\ParameterTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\PropertyTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\SetterMethodTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
|
||
/** | ||
* Class MethodGenerator | ||
* @package PHPFHIR\ClassGenerator\Generator | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Generator | ||
*/ | ||
abstract class MethodGenerator | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Generator; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Generator; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,17 +16,17 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Enum\ElementTypeEnum; | ||
use PHPFHIR\ClassGenerator\Enum\PHPScopeEnum; | ||
use PHPFHIR\ClassGenerator\Template\ClassTemplate; | ||
use PHPFHIR\ClassGenerator\Template\PropertyTemplate; | ||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\XMLUtils; | ||
use PHPFHIR\ClassGenerator\XSDMap; | ||
use DCarbone\PHPFHIR\ClassGenerator\Enum\ElementTypeEnum; | ||
use DCarbone\PHPFHIR\ClassGenerator\Enum\PHPScopeEnum; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\ClassTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Template\PropertyTemplate; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\XMLUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\XSDMap; | ||
|
||
/** | ||
* Class PropertyGenerator | ||
* @package PHPFHIR\ClassGenerator\Utilities | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Utilities | ||
*/ | ||
abstract class PropertyGenerator | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Template; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Template; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,12 +16,12 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Enum\PHPScopeEnum; | ||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Enum\PHPScopeEnum; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
|
||
/** | ||
* Class AbstractMethodTemplate | ||
* @package PHPFHIR\ClassGenerator\Template | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Template | ||
*/ | ||
abstract class AbstractMethodTemplate extends AbstractTemplate | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Template; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Template; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -20,7 +20,7 @@ | |
* TODO: Restructure template system so documentation is not implemented where applicable. | ||
* | ||
* Class AbstractTemplate | ||
* @package PHPFHIR\ClassGenerator\Template | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Template | ||
*/ | ||
abstract class AbstractTemplate | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Template; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Template; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -15,11 +15,11 @@ | |
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
use PHPFHIR\ClassGenerator\Utilities\CopyrightUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\CopyrightUtils; | ||
|
||
/** | ||
* Class AutoloaderTemplate | ||
* @package PHPFHIR\ClassGenerator\Template | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Template | ||
*/ | ||
class AutoloaderTemplate extends AbstractTemplate | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Template; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Template; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,13 +16,13 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Utilities\CopyrightUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\FileUtils; | ||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\CopyrightUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\FileUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
|
||
/** | ||
* Class ClassTemplate | ||
* @package PHPFHIR\ClassGenerator\Template | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Template | ||
*/ | ||
class ClassTemplate extends AbstractTemplate | ||
{ | ||
|
@@ -162,15 +162,15 @@ public function getExtendedElementName() | |
} | ||
|
||
/** | ||
* @return \PHPFHIR\ClassGenerator\Template\PropertyTemplate[] | ||
* @return \DCarbone\PHPFHIR\ClassGenerator\Template\PropertyTemplate[] | ||
*/ | ||
public function getProperties() | ||
{ | ||
return $this->_properties; | ||
} | ||
|
||
/** | ||
* @return \PHPFHIR\ClassGenerator\Template\AbstractMethodTemplate[] | ||
* @return \DCarbone\PHPFHIR\ClassGenerator\Template\AbstractMethodTemplate[] | ||
*/ | ||
public function getMethods() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Template; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Template; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,12 +16,12 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Enum\PHPScopeEnum; | ||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Enum\PHPScopeEnum; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
|
||
/** | ||
* Class GetterMethodTemplate | ||
* @package PHPFHIR\ClassGenerator\Template | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Template | ||
*/ | ||
class GetterMethodTemplate extends AbstractMethodTemplate | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php namespace PHPFHIR\ClassGenerator\Template; | ||
<?php namespace DCarbone\PHPFHIR\ClassGenerator\Template; | ||
|
||
/* | ||
* Copyright 2016 Daniel Carbone ([email protected]) | ||
|
@@ -16,11 +16,11 @@ | |
* limitations under the License. | ||
*/ | ||
|
||
use PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
use DCarbone\PHPFHIR\ClassGenerator\Utilities\NameUtils; | ||
|
||
/** | ||
* Class ParameterTemplate | ||
* @package PHPFHIR\ClassGenerator\Template | ||
* @package DCarbone\PHPFHIR\ClassGenerator\Template | ||
*/ | ||
class ParameterTemplate extends AbstractTemplate | ||
{ | ||
|
Oops, something went wrong.