This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
HomeIsWhereTheMoneyIs/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
T
2017-05-24 18:35:30 -05: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()
{
}
}