File "AbstractTrait.php"

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

<?php
trait AbstractTrait
{
    abstract public function doSomething();

    public function mockableMethod()
    {
        return true;
    }

    public function anotherMockableMethod()
    {
        return true;
    }
}