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);
    }