SAREhub/PHP_Commons

View on GitHub
src/SAREhub/Commons/Test/CallableMock.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SAREhub\Commons\Test;

use Mockery\MockInterface;

class CallableMock
{
    public function __invoke()
    {

    }

    /**
     * @return MockInterface | callable
     */
    public static function create(): callable
    {
        return \Mockery::mock(self::class);
    }
}