Files
parkir-parepare/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
2023-07-11 17:28:33 +08:00

19 lines
261 B
PHP
Executable File

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