<?php
use Mockery\LegacyMockInterface;
use Mockery\Matcher\AndAnyOtherArgs;
use Mockery\Matcher\AnyArgs;
use Mockery\MockInterface;
if (! \function_exists('mock')) {
function mock(...$args)
{
return Mockery::mock(...$args);
}
}
if (! \function_exists('spy')) {
function spy(...$args)
{
return Mockery::spy(...$args);
}
}
if (! \function_exists('namedMock')) {