PhpSpec\Wrapper\Collaborator::__construct PHP Method

__construct() public method

public __construct ( Prophecy\Prophecy\ObjectProphecy $prophecy )
$prophecy Prophecy\Prophecy\ObjectProphecy
    public function __construct(ObjectProphecy $prophecy)
    {
        $this->prophecy = $prophecy;
    }

Usage Example

 public function __construct(ObjectProphecy $prophecy, $class)
 {
     parent::__construct($prophecy);
     $this->prophecy = $prophecy;
     $this->beADoubleOf($class);
 }