Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

При наследовании класса параметр не передается в родительский класс #20

Open
sergeysvrollun opened this issue Nov 5, 2019 · 0 comments

Comments

@sergeysvrollun
Copy link

abstract class ParentClass
{
    protected $nextHandler;
    protected $logger;
    protected $tracer;

    public function __construct(
        callable $nextHandler,
        LoggerInterface $logger = null,
        Tracer $tracer = null
    ) {
        $this->nextHandler = $nextHandler;
        InsideConstruct::init([
            'logger' => LoggerInterface::class,
            'tracer' => Tracer::class
        ]);
    }
}

class ChildClass extends ParentClass
{
    protected $proxyManager;

    public function __construct(
        callable $nextHandler,
        ProxyManagerInterface $proxyManager = null
    ) {
        InsideConstruct::init([
            'nextHandler' => $nextHandler,
            'proxyManager' => 'ProxyManagerInterface',
        ]);
    }
}

$f = new ChildClass($handler, $proxyManager);

Error:

ReflectionException : Internal error: Failed to retrieve the default value
 .../vendor/rollun-com/rollun-dic/src/Dic/src/InsideConstruct.php:200
 .../vendor/rollun-com/rollun-dic/src/Dic/src/InsideConstruct.php:289
 .../vendor/rollun-com/rollun-dic/src/Dic/src/InsideConstruct.php:344```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant