PHPCfg\Operand\BoundVariable::__construct PHP Method

__construct() public method

public __construct ( $name, $byRef, $scope = self::SCOPE_GLOBAL, $extra = null )
    public function __construct($name, $byRef, $scope = self::SCOPE_GLOBAL, $extra = null)
    {
        parent::__construct($name);
        $this->byRef = (bool) $byRef;
        $this->scope = $scope;
        $this->extra = $extra;
    }
BoundVariable