Pop\Code\Reflection::__construct PHP Method

__construct() public method

Instantiate the code reflection object
public __construct ( string $code ) : Reflection
$code string
return Reflection
    public function __construct($code)
    {
        $this->code = $code;
        parent::__construct($code);
        $this->buildGenerator();
    }