Nette\Bridges\DITracy\ContainerPanel::getContainerProperty PHP 메소드

getContainerProperty() 개인적인 메소드

private getContainerProperty ( $name )
    private function getContainerProperty($name)
    {
        $prop = (new \ReflectionClass(Nette\DI\Container::class))->getProperty($name);
        $prop->setAccessible(TRUE);
        return $prop->getValue($this->container);
    }