Files
t404null/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
Glitch (t404null) 25e7853992 Fixed twitter link
2022-06-25 11:33:59 +00:00

19 lines
261 B
PHP

<?php
class PartialMockTestClass
{
public $constructorCalled = false;
public function __construct()
{
$this->constructorCalled = true;
}
public function doSomething()
{
}
public function doAnotherThing()
{
}
}