__construct() public method

public __construct ( Pinq\Analysis\ITypeSystem $typeSystem, $sourceType, $returnType )
$typeSystem Pinq\Analysis\ITypeSystem
示例#1
0
文件: Method.php 项目: timetoogo/pinq
 public function __construct(ITypeSystem $typeSystem, $sourceType, \ReflectionMethod $reflection, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $reflection->getName();
     $this->reflection = $reflection;
 }
示例#2
0
 public function __construct(ITypeSystem $typeSystem, $type, \ReflectionMethod $reflection = null)
 {
     parent::__construct($typeSystem, $type, $type);
     $this->reflection = $reflection;
 }
示例#3
0
文件: Field.php 项目: timetoogo/pinq
 public function __construct(ITypeSystem $typeSystem, $sourceType, $name, $isStatic, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $name;
     $this->isStatic = $isStatic;
 }
示例#4
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
 }