__construct() public méthode

public __construct ( Pinq\Analysis\ITypeSystem $typeSystem, $sourceType, $returnType )
$typeSystem Pinq\Analysis\ITypeSystem
Exemple #1
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, \ReflectionMethod $reflection, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $reflection->getName();
     $this->reflection = $reflection;
 }
Exemple #2
0
 public function __construct(ITypeSystem $typeSystem, $type, \ReflectionMethod $reflection = null)
 {
     parent::__construct($typeSystem, $type, $type);
     $this->reflection = $reflection;
 }
Exemple #3
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, $name, $isStatic, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $name;
     $this->isStatic = $isStatic;
 }
Exemple #4
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
 }