File "PartialMockTestClass.php"

Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit-mock-objects/tests/_fixture/PartialMockTestClass.php
File size: 261 bytes
MIME-type: --
Charset: utf-8

<?php
class PartialMockTestClass
{
    public $constructorCalled = false;

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

    public function doSomething()
    {
    }

    public function doAnotherThing()
    {
    }
}