Author: Elliot Levin (elliotlevin@hotmail.com)
Inheritance: extends Pinq\Analysis\Typed, implements Pinq\Analysis\ITypeOperation
Beispiel #1
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, \ReflectionMethod $reflection, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $reflection->getName();
     $this->reflection = $reflection;
 }
Beispiel #2
0
 public function __construct(ITypeSystem $typeSystem, $type, \ReflectionMethod $reflection = null)
 {
     parent::__construct($typeSystem, $type, $type);
     $this->reflection = $reflection;
 }
Beispiel #3
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, $name, $isStatic, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
     $this->name = $name;
     $this->isStatic = $isStatic;
 }
Beispiel #4
0
 public function __construct(ITypeSystem $typeSystem, $sourceType, $returnType)
 {
     parent::__construct($typeSystem, $sourceType, $returnType);
 }