Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
<?php
class PartialMockTestClass
{
    public
$constructorCalled = false;

    public function
__construct()
    {
       
$this->constructorCalled = true;
    }

    public function
doSomething()
    {
    }

    public function
doAnotherThing()
    {
    }
}