*/ class ObjectDefinitionDumper { /** * Returns the definition as string representation. */ public function dump(ObjectDefinition $definition): string { $className = $definition->getClassName(); $classExist = class_exists($className) || interface_exists($className); // Class if (! $classExist) { $warning = '#UNKNOWN# '; } else { $class = new \ReflectionClass($className); $warning = $class->isInstantiable() ? '' : '#NOT INSTANTIABLE# '; } $str = sprintf(' class = %s%s', $warning, $className); // Lazy $str .= \PHP_EOL . ' lazy = ' . var_export($definition->isLazy(), true); if ($classExist) { // Constructor $str .= $this->dumpConstructor($className, $definition); // Properties $str .= $this->dumpProperties($definition); // Methods $str .= $this->dumpMethods($className, $definition); } return sprintf('Object (' . \PHP_EOL . '%s' . \PHP_EOL . ')', $str); } private function dumpConstructor(string $className, ObjectDefinition $definition): string { $str = ''; $constructorInjection = $definition->getConstructorInjection(); if ($constructorInjection !== null) { $parameters = $this->dumpMethodParameters($className, $constructorInjection); $str .= sprintf(\PHP_EOL . ' __construct(' . \PHP_EOL . ' %s' . \PHP_EOL . ' )', $parameters); } return $str; } private function dumpProperties(ObjectDefinition $definition): string { $str = ''; foreach ($definition->getPropertyInjections() as $propertyInjection) { $value = $propertyInjection->getValue(); $valueStr = $value instanceof Definition ? (string) $value : var_export($value, true); $str .= sprintf(\PHP_EOL . ' $%s = %s', $propertyInjection->getPropertyName(), $valueStr); } return $str; } private function dumpMethods(string $className, ObjectDefinition $definition): string { $str = ''; foreach ($definition->getMethodInjections() as $methodInjection) { $parameters = $this->dumpMethodParameters($className, $methodInjection); $str .= sprintf(\PHP_EOL . ' %s(' . \PHP_EOL . ' %s' . \PHP_EOL . ' )', $methodInjection->getMethodName(), $parameters); } return $str; } private function dumpMethodParameters(string $className, MethodInjection $methodInjection): string { $methodReflection = new \ReflectionMethod($className, $methodInjection->getMethodName()); $args = []; $definitionParameters = $methodInjection->getParameters(); foreach ($methodReflection->getParameters() as $index => $parameter) { if (array_key_exists($index, $definitionParameters)) { $value = $definitionParameters[$index]; $valueStr = $value instanceof Definition ? (string) $value : var_export($value, true); $args[] = sprintf('$%s = %s', $parameter->getName(), $valueStr); continue; } // If the parameter is optional and wasn't specified, we take its default value if ($parameter->isOptional()) { try { $value = $parameter->getDefaultValue(); $args[] = sprintf( '$%s = (default value) %s', $parameter->getName(), var_export($value, true) ); continue; } catch (ReflectionException $e) { // The default value can't be read through Reflection because it is a PHP internal class } } $args[] = sprintf('$%s = #UNDEFINED#', $parameter->getName()); } return implode(\PHP_EOL . ' ', $args); } } __halt_compiler();----SIGNATURE:----evOcfpMAC8rWqdPLnCZPRY64QotA17LHqXeI6ItjLQ0RryVrARxWyIIY2GajNi6c2XHrk8ZlN9EmS+oTxQPmxYAZ7FZx18yg5nS3gzjNBGRlO4BzLvnfy6APitDVdqs9xATP55ekQiGsnxXme8WoPNgMuQjfcwPPpz6rNB76yM/jdA1pkeXL/1L8jTJY4wYRg5vVBl5OmO2UmnnoFohnrawtIgq1RRneNQoUBDjnSjkGwWCHWrAJfp9XRAbeRVI6nwn3Eo/Jne6oqZgYPewXLxiHsIllR/3lVuJ3tZKvafhjM/VIVEcE7BJb33WQssuBgVX6/PVBVe/c0GA/N5Syum3z7/Cg9MZ/d1B9/aG3JD4MIjFCNCKiq0ZVTfIB/fUU5Tt9+2qNN37cIPDW5Pqkc6FKCTKnUaJwVemp40Qi1vIGmKQBbAKzU7ZJs486Ta9S7rvbhEe9X2EbLbU2LiQI4v8Uxo5Dr570Y+xOYbbPqYw4nclzLRf+xrRJCXazgoqs2Yv5DnaYHPZCjj4KiGPug/DlokPTT+EuiDWrkEnBft4C6uEH0MKcULtU5gl7BPMI5mre/ruCN3CX3/GE7PgT14JLiI8BkZswp5cydf++PTwHvspWmQKMakomx5R15H20DBXvBAxTW97a59I83hBXk+Gz2pcxj6CjuRiigoPJXhE=----ATTACHMENT:----OTc2NDIzMTkwODg0Mjk0MiA3MDM3OTcwOTg4MjAyOTQ2IDkyNDk0MTM5NTY0NDc3MQ==