Pinq\Analysis\Functions\Func::__construct PHP Метод

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

public __construct ( Pinq\Analysis\ITypeSystem $typeSystem, $name, $returnType )
$typeSystem Pinq\Analysis\ITypeSystem
    public function __construct(ITypeSystem $typeSystem, $name, $returnType)
    {
        parent::__construct($typeSystem);
        $this->name = $name;
        $this->reflection = new \ReflectionFunction($name);
        $this->returnType = $returnType;
    }