mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 22:08:00 +01:00
11 lines
125 B
PHP
11 lines
125 B
PHP
<?php
|
|
|
|
if (function_exists('mock')) {
|
|
return;
|
|
}
|
|
|
|
function mock(): \Mockery\MockInterface
|
|
{
|
|
return new DummyMock();
|
|
}
|