Pinq\Analysis\TypeOperations\TypeOperation::__construct PHP 메소드

__construct() 공개 메소드

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

Usage Example

예제 #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;
 }
All Usage Examples Of Pinq\Analysis\TypeOperations\TypeOperation::__construct