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
 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