first commit
This commit is contained in:
18
vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
vendored
Normal file
18
vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
class PartialMockTestClass
|
||||
{
|
||||
public $constructorCalled = false;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->constructorCalled = true;
|
||||
}
|
||||
|
||||
public function doSomething()
|
||||
{
|
||||
}
|
||||
|
||||
public function doAnotherThing()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user