getName()); $cg->setSourceContent($cg->getSourceContent()); $cg->setSourceDirty(false); if ($classReflection->getDocComment() != '') { $cg->setDocBlock(DocBlockGenerator::fromReflection($classReflection->getDocBlock())); } // set the namespace if ($classReflection->inNamespace()) { $cg->setNamespaceName($classReflection->getNamespaceName()); } $properties = []; foreach ($classReflection->getProperties() as $reflectionProperty) { if ($reflectionProperty->getDeclaringClass()->getName() == $classReflection->getName()) { $properties[] = PropertyGenerator::fromReflection($reflectionProperty); } } $cg->addProperties($properties); $methods = []; foreach ($classReflection->getMethods() as $reflectionMethod) { $className = $cg->getName(); $namespaceName = $cg->getNamespaceName(); if ($namespaceName !== null) { $className = $namespaceName . '\\' . $className; } if ($reflectionMethod->getDeclaringClass()->getName() == $className) { $methods[] = MethodGenerator::fromReflection($reflectionMethod); } } $cg->addMethods($methods); return $cg; } /** * Generate from array * * @deprecated this API is deprecated, and will be removed in the next major release. Please * use the other constructors of this class instead. * * @configkey name string [required] Class Name * @configkey filegenerator FileGenerator File generator that holds this class * @configkey namespacename string The namespace for this class * @configkey docblock string The docblock information * @configkey properties * @configkey methods * @throws Exception\InvalidArgumentException * @param array $array * @return static */ public static function fromArray(array $array) { if (! isset($array['name'])) { throw new Exception\InvalidArgumentException( 'Class generator requires that a name is provided for this object' ); } $cg = new static($array['name']); foreach ($array as $name => $value) { // normalize key switch (strtolower(str_replace(['.', '-', '_'], '', $name))) { case 'containingfile': $cg->setContainingFileGenerator($value); break; case 'namespacename': $cg->setNamespaceName($value); break; case 'docblock': $docBlock = $value instanceof DocBlockGenerator ? $value : DocBlockGenerator::fromArray($value); $cg->setDocBlock($docBlock); break; case 'properties': $cg->addProperties($value); break; case 'methods': $cg->addMethods($value); break; } } return $cg; } /** * @inheritDoc * @param int[]|int $flags */ public function setFlags($flags) { return $this; } /** * @param int $flag * @return static */ public function addFlag($flag) { return $this; } /** * @param int $flag * @return static */ public function removeFlag($flag) { return $this; } /** * @inheritDoc */ public function setFinal($isFinal) { return $this; } /** * @param ?string $extendedClass * @return static */ public function setExtendedClass($extendedClass) { return $this; } /** * @inheritDoc */ public function setImplementedInterfaces(array $implementedInterfaces) { return $this; } /** * @inheritDoc */ public function setAbstract($isAbstract) { return $this; } } __halt_compiler();----SIGNATURE:----q0QnDCbgPvvWd6s1+B85XvIi0lgpY3TBVT1SfWz23/IZeVjeAMxDitQvFGE7lvOi2nP22ouMxmeoBvQLmwg91l3PbRAzLPEbuh90PMtrNjpGKraBemQzPhSfKE26hEINaSwoL1BoPAnmAbZGoOmRxVzZIa4BsCCWUETtt+6ExlWeCjZIZumGcJ7B+GvzKQgZJhePvZSLBmuylNW8SsY/WXYhRU9mPq2/PN+oXevBgN3+cPSIjgMYv/xsySAbQbTZLdmKnY4/lNPtEyATvIeikYpQApbWrsoA3OdRP8lL7JbD2Q20dPBSVd6k2TaPMqRg13cP9laKkZyxCf/eXrM7Si+hnz3MSD6aNB2jaMz5Brh6FImMixAJ5FNkF2VOKdk/f68Tfj5dVVkMKwjGsJb1LEiMVKxyFbG8CjJ6APa1hPGyMKhuk2Zf5WehaptDw6d7vbQtgapATMeP0pMcFS018ZHuMh+Dh6EBL0BwUSxv/GGmGrmuOKiImFYrzfCbNus/xEUL1CZxhrO3GBtphnVwkaUu7SVN4v3PcVXNsl/F9+SaM0XEGMkNKlkUy0x08O8/G3HCOaVoHTf/DfAazZiAz9WLq8+PLE/Kronwk5dOQ1RSLtAOycTipOURdx+hTyn7AuRcRuBIjIuq0FHa1coofz+mREmNekhiMOIi1FN9iW4=----ATTACHMENT:----NDA4Mzg5NTI1MzU2MTM3MCA1MzIxOTA0NzE3MjAxODA1IDkzNTYzNTk4ODg0ODkyMTg=