mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
9 lines
117 B
PHP
9 lines
117 B
PHP
<?php
|
|
|
|
use Mockery\MockInterface;
|
|
|
|
function mock(string $class): MockInterface
|
|
{
|
|
return Mockery::mock($class);
|
|
}
|