PHPUnit_Framework_Constraint::__construct PHP Method

__construct() public method

public __construct ( )
    public function __construct()
    {
        $this->exporter = new Exporter();
    }

Usage Example

 public function __construct(string $className, string $methodName, int $paramIndex)
 {
     parent::__construct();
     $this->className = $className;
     $this->methodName = $methodName;
     $this->paramIndex = $paramIndex;
 }
All Usage Examples Of PHPUnit_Framework_Constraint::__construct