*/ class Reference implements Definition, SelfResolvingDefinition { /** * Entry name. * @var string */ private $name = ''; /** * Name of the target entry. * @var string */ private $targetEntryName; /** * @param string $targetEntryName Name of the target entry */ public function __construct(string $targetEntryName) { $this->targetEntryName = $targetEntryName; } public function getName(): string { return $this->name; } public function setName(string $name) { $this->name = $name; } public function getTargetEntryName(): string { return $this->targetEntryName; } public function resolve(ContainerInterface $container) { return $container->get($this->getTargetEntryName()); } public function isResolvable(ContainerInterface $container): bool { return $container->has($this->getTargetEntryName()); } public function replaceNestedDefinitions(callable $replacer) { // no nested definitions } public function __toString() { return sprintf( 'get(%s)', $this->targetEntryName ); } } __halt_compiler();----SIGNATURE:----n1wMRJu+srYm0vNsxzOI0thgtVX6EHxAOKqGFekAByOxTcI1JgdAJFplrBEPvW05PXVa+XoeqRIH9uY6Xb2ndMHhP53mwFVCSfmcxi7Cb8cr/0HSTMIujbR/ezqn6d55U8IvyOYvC8pYbkJJ6ku+LnWJYunrnIE58djbOWYzdpWoxr5OhbF02u0Gb+VEmWxx4BpgUf/BqCfp2Zn+o3vvgLPFBmMjmFovelWWh73Fy113qJyRtyQ/tQQMecYC2dSoLlMY56t/wwUUOLbYEydurTIELrqoIUPdYK7FRKHbapN/g+dYFGj2EH/IDkZKtZMOIOmkwdfUP1GZkpcbnDr85zviEpKd/q3hwDcI6nAI4TZCqMsk2+wgepmUVQEJWavhRnbd9EFXooOQDjsgofKeK8GcXsLtm+uMOyK/Ga8E+SfpC+IqjBTZCA7WbO7mR1dO4WKowJ+e/p9EksQZdu/hxRqcvOEmKVZqFBVbfyKQ2NlIcFCNe/16FV2qCeNAGj3evq6Exd84Ibu6aOMnAATPKcREPawPXlSeelKi2BL8OrbNaHgOFxGnO/a8GMwPBdrLkKj9qmi0gaxdAt01n4EdQ79CL5sLk15FzoSjT5hmIxoYlhR2IWpUp9AqRka8z9KbTWldL6IR9InMhyavZQmWliynfAxV641O5qdpbMSfL+Q=----ATTACHMENT:----MzkzNDczODk4MTgzNzMwNCA0MzEyMDI5NDcxMjk1MTQ2IDg3ODE2ODk4MzgzNDYxMTQ=