Pop\Code\Reflection::__construct PHP Метод

__construct() публичный Метод

Instantiate the code reflection object
public __construct ( string $code ) : Reflection
$code string
Результат Reflection
    public function __construct($code)
    {
        $this->code = $code;
        parent::__construct($code);
        $this->buildGenerator();
    }