Nette\Bridges\DITracy\ContainerPanel::getContainerProperty PHP Method

getContainerProperty() private method

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