diff --git a/lib/Doctrine/ORM/Tools/EntityGenerator.php b/lib/Doctrine/ORM/Tools/EntityGenerator.php index 7e05edd9f..c0e9dd195 100644 --- a/lib/Doctrine/ORM/Tools/EntityGenerator.php +++ b/lib/Doctrine/ORM/Tools/EntityGenerator.php @@ -59,90 +59,90 @@ class EntityGenerator /** * @var bool */ - private $backupExisting = true; + protected $backupExisting = true; /** * The extension to use for written php files * * @var string */ - private $extension = '.php'; + protected $extension = '.php'; /** * Whether or not the current ClassMetadataInfo instance is new or old * * @var boolean */ - private $isNew = true; + protected $isNew = true; /** * @var array */ - private $staticReflection = array(); + protected $staticReflection = array(); /** * Number of spaces to use for indention in generated code */ - private $numSpaces = 4; + protected $numSpaces = 4; /** * The actual spaces to use for indention * * @var string */ - private $spaces = ' '; + protected $spaces = ' '; /** * The class all generated entities should extend * * @var string */ - private $classToExtend; + protected $classToExtend; /** * Whether or not to generation annotations * * @var boolean */ - private $generateAnnotations = false; + protected $generateAnnotations = false; /** * @var string */ - private $annotationsPrefix = ''; + protected $annotationsPrefix = ''; /** * Whether or not to generated sub methods * * @var boolean */ - private $generateEntityStubMethods = false; + protected $generateEntityStubMethods = false; /** * Whether or not to update the entity class if it exists already * * @var boolean */ - private $updateEntityIfExists = false; + protected $updateEntityIfExists = false; /** * Whether or not to re-generate entity class if it exists already * * @var boolean */ - private $regenerateEntityIfExists = false; + protected $regenerateEntityIfExists = false; /** * @var boolean */ - private $fieldVisibility = 'private'; + protected $fieldVisibility = 'private'; /** * Hash-map for handle types * * @var array */ - private $typeAlias = array( + protected $typeAlias = array( Type::DATETIMETZ => '\DateTime', Type::DATETIME => '\DateTime', Type::DATE => '\DateTime', @@ -160,7 +160,7 @@ class EntityGenerator /** * @var string */ - private static $classTemplate = + protected static $classTemplate = ' @@ -177,7 +177,7 @@ use Doctrine\ORM\Mapping as ORM; /** * @var string */ - private static $getMethodTemplate = + protected static $getMethodTemplate = '/** * * @@ -191,7 +191,7 @@ public function () /** * @var string */ - private static $setMethodTemplate = + protected static $setMethodTemplate = '/** * * @@ -208,7 +208,7 @@ public function ($) /** * @var string */ - private static $addMethodTemplate = + protected static $addMethodTemplate = '/** * * @@ -225,7 +225,7 @@ public function ($) /** * @var string */ - private static $removeMethodTemplate = + protected static $removeMethodTemplate = '/** * * @@ -239,7 +239,7 @@ public function ($) /** * @var string */ - private static $lifecycleCallbackMethodTemplate = + protected static $lifecycleCallbackMethodTemplate = '/** * @ */ @@ -251,7 +251,7 @@ public function () /** * @var string */ - private static $constructorMethodTemplate = + protected static $constructorMethodTemplate = '/** * Constructor */ @@ -481,7 +481,7 @@ public function __construct() * @param string $type * @return string */ - private function getType($type) + protected function getType($type) { if (isset($this->typeAlias[$type])) { return $this->typeAlias[$type]; @@ -490,20 +490,20 @@ public function __construct() return $type; } - private function generateEntityNamespace(ClassMetadataInfo $metadata) + protected function generateEntityNamespace(ClassMetadataInfo $metadata) { if ($this->hasNamespace($metadata)) { return 'namespace ' . $this->getNamespace($metadata) .';'; } } - private function generateEntityClassName(ClassMetadataInfo $metadata) + protected function generateEntityClassName(ClassMetadataInfo $metadata) { return 'class ' . $this->getClassName($metadata) . ($this->extendsClass() ? ' extends ' . $this->getClassToExtendName() : null); } - private function generateEntityBody(ClassMetadataInfo $metadata) + protected function generateEntityBody(ClassMetadataInfo $metadata) { $fieldMappingProperties = $this->generateEntityFieldMappingProperties($metadata); $associationMappingProperties = $this->generateEntityAssociationMappingProperties($metadata); @@ -533,7 +533,7 @@ public function __construct() return implode("\n", $code); } - private function generateEntityConstructor(ClassMetadataInfo $metadata) + protected function generateEntityConstructor(ClassMetadataInfo $metadata) { if ($this->hasMethod('__construct', $metadata)) { return ''; @@ -558,7 +558,7 @@ public function __construct() * @todo this won't work if there is a namespace in brackets and a class outside of it. * @param string $src */ - private function parseTokensInEntityFile($src) + protected function parseTokensInEntityFile($src) { $tokens = token_get_all($src); $lastSeenNamespace = ""; @@ -605,7 +605,7 @@ public function __construct() } } - private function hasProperty($property, ClassMetadataInfo $metadata) + protected function hasProperty($property, ClassMetadataInfo $metadata) { if ($this->extendsClass()) { // don't generate property if its already on the base class. @@ -621,7 +621,7 @@ public function __construct() ); } - private function hasMethod($method, ClassMetadataInfo $metadata) + protected function hasMethod($method, ClassMetadataInfo $metadata) { if ($this->extendsClass()) { // don't generate method if its already on the base class. @@ -638,40 +638,40 @@ public function __construct() ); } - private function hasNamespace(ClassMetadataInfo $metadata) + protected function hasNamespace(ClassMetadataInfo $metadata) { return strpos($metadata->name, '\\') ? true : false; } - private function extendsClass() + protected function extendsClass() { return $this->classToExtend ? true : false; } - private function getClassToExtend() + protected function getClassToExtend() { return $this->classToExtend; } - private function getClassToExtendName() + protected function getClassToExtendName() { $refl = new \ReflectionClass($this->getClassToExtend()); return '\\' . $refl->getName(); } - private function getClassName(ClassMetadataInfo $metadata) + protected function getClassName(ClassMetadataInfo $metadata) { return ($pos = strrpos($metadata->name, '\\')) ? substr($metadata->name, $pos + 1, strlen($metadata->name)) : $metadata->name; } - private function getNamespace(ClassMetadataInfo $metadata) + protected function getNamespace(ClassMetadataInfo $metadata) { return substr($metadata->name, 0, strrpos($metadata->name, '\\')); } - private function generateEntityDocBlock(ClassMetadataInfo $metadata) + protected function generateEntityDocBlock(ClassMetadataInfo $metadata) { $lines = array(); $lines[] = '/**'; @@ -713,7 +713,7 @@ public function __construct() return implode("\n", $lines); } - private function generateTableAnnotation($metadata) + protected function generateTableAnnotation($metadata) { $table = array(); @@ -738,7 +738,7 @@ public function __construct() return '@' . $this->annotationsPrefix . 'Table(' . implode(', ', $table) . ')'; } - private function generateTableConstraints($constraintName, $constraints) + protected function generateTableConstraints($constraintName, $constraints) { $annotations = array(); foreach ($constraints as $name => $constraint) { @@ -751,14 +751,14 @@ public function __construct() return implode(', ', $annotations); } - private function generateInheritanceAnnotation($metadata) + protected function generateInheritanceAnnotation($metadata) { if ($metadata->inheritanceType != ClassMetadataInfo::INHERITANCE_TYPE_NONE) { return '@' . $this->annotationsPrefix . 'InheritanceType("'.$this->getInheritanceTypeString($metadata->inheritanceType).'")'; } } - private function generateDiscriminatorColumnAnnotation($metadata) + protected function generateDiscriminatorColumnAnnotation($metadata) { if ($metadata->inheritanceType != ClassMetadataInfo::INHERITANCE_TYPE_NONE) { $discrColumn = $metadata->discriminatorValue; @@ -770,7 +770,7 @@ public function __construct() } } - private function generateDiscriminatorMapAnnotation($metadata) + protected function generateDiscriminatorMapAnnotation($metadata) { if ($metadata->inheritanceType != ClassMetadataInfo::INHERITANCE_TYPE_NONE) { $inheritanceClassMap = array(); @@ -783,7 +783,7 @@ public function __construct() } } - private function generateEntityStubMethods(ClassMetadataInfo $metadata) + protected function generateEntityStubMethods(ClassMetadataInfo $metadata) { $methods = array(); @@ -824,7 +824,7 @@ public function __construct() return implode("\n\n", $methods); } - private function isAssociationIsNullable($associationMapping) + protected function isAssociationIsNullable($associationMapping) { if (isset($associationMapping['id']) && $associationMapping['id']) { return false; @@ -846,7 +846,7 @@ public function __construct() return true; } - private function generateEntityLifecycleCallbackMethods(ClassMetadataInfo $metadata) + protected function generateEntityLifecycleCallbackMethods(ClassMetadataInfo $metadata) { if (isset($metadata->lifecycleCallbacks) && $metadata->lifecycleCallbacks) { $methods = array(); @@ -865,7 +865,7 @@ public function __construct() return ""; } - private function generateEntityAssociationMappingProperties(ClassMetadataInfo $metadata) + protected function generateEntityAssociationMappingProperties(ClassMetadataInfo $metadata) { $lines = array(); @@ -882,7 +882,7 @@ public function __construct() return implode("\n", $lines); } - private function generateEntityFieldMappingProperties(ClassMetadataInfo $metadata) + protected function generateEntityFieldMappingProperties(ClassMetadataInfo $metadata) { $lines = array(); @@ -900,7 +900,7 @@ public function __construct() return implode("\n", $lines); } - private function generateEntityStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null) + protected function generateEntityStubMethod(ClassMetadataInfo $metadata, $type, $fieldName, $typeHint = null, $defaultValue = null) { $methodName = $type . Inflector::classify($fieldName); if (in_array($type, array("add", "remove")) && substr($methodName, -1) == "s") { @@ -944,7 +944,7 @@ public function __construct() return $this->prefixCodeWithSpaces($method); } - private function generateLifecycleCallbackMethod($name, $methodName, $metadata) + protected function generateLifecycleCallbackMethod($name, $methodName, $metadata) { if ($this->hasMethod($methodName, $metadata)) { return ''; @@ -965,7 +965,7 @@ public function __construct() return $this->prefixCodeWithSpaces($method); } - private function generateJoinColumnAnnotation(array $joinColumn) + protected function generateJoinColumnAnnotation(array $joinColumn) { $joinColumnAnnot = array(); @@ -996,7 +996,7 @@ public function __construct() return '@' . $this->annotationsPrefix . 'JoinColumn(' . implode(', ', $joinColumnAnnot) . ')'; } - private function generateAssociationMappingPropertyDocBlock(array $associationMapping, ClassMetadataInfo $metadata) + protected function generateAssociationMappingPropertyDocBlock(array $associationMapping, ClassMetadataInfo $metadata) { $lines = array(); $lines[] = $this->spaces . '/**'; @@ -1133,7 +1133,7 @@ public function __construct() return implode("\n", $lines); } - private function generateFieldMappingPropertyDocBlock(array $fieldMapping, ClassMetadataInfo $metadata) + protected function generateFieldMappingPropertyDocBlock(array $fieldMapping, ClassMetadataInfo $metadata) { $lines = array(); $lines[] = $this->spaces . '/**'; @@ -1213,7 +1213,7 @@ public function __construct() return implode("\n", $lines); } - private function prefixCodeWithSpaces($code, $num = 1) + protected function prefixCodeWithSpaces($code, $num = 1) { $lines = explode("\n", $code); @@ -1226,7 +1226,7 @@ public function __construct() return implode("\n", $lines); } - private function getInheritanceTypeString($type) + protected function getInheritanceTypeString($type) { switch ($type) { case ClassMetadataInfo::INHERITANCE_TYPE_NONE: @@ -1246,7 +1246,7 @@ public function __construct() } } - private function getChangeTrackingPolicyString($policy) + protected function getChangeTrackingPolicyString($policy) { switch ($policy) { case ClassMetadataInfo::CHANGETRACKING_DEFERRED_IMPLICIT: @@ -1263,7 +1263,7 @@ public function __construct() } } - private function getIdGeneratorTypeString($type) + protected function getIdGeneratorTypeString($type) { switch ($type) { case ClassMetadataInfo::GENERATOR_TYPE_AUTO: