⚝
One Hat Cyber Team
⚝
Your IP:
18.221.35.244
Server IP:
162.254.39.145
Server:
Linux premium289.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
favoaysf
/
www
/
vendor
/
mockery
/
mockery
/
library
/
View File Name :
helpers.php
<?php /** * Mockery (https://docs.mockery.io/) * * @copyright https://github.com/mockery/mockery/blob/HEAD/COPYRIGHT.md * @license https://github.com/mockery/mockery/blob/HEAD/LICENSE BSD 3-Clause License * @link https://github.com/mockery/mockery for the canonical source repository */ use Mockery\LegacyMockInterface; use Mockery\Matcher\AndAnyOtherArgs; use Mockery\Matcher\AnyArgs; use Mockery\MockInterface; if (! \function_exists('mock')) { /** * @template TMock of object * * @param array<class-string<TMock>|TMock|Closure(LegacyMockInterface&MockInterface&TMock):LegacyMockInterface&MockInterface&TMock|array<TMock>> $args * * @return LegacyMockInterface&MockInterface&TMock */ function mock(...$args) { return Mockery::mock(...$args); } } if (! \function_exists('spy')) { /** * @template TSpy of object * * @param array<class-string<TSpy>|TSpy|Closure(LegacyMockInterface&MockInterface&TSpy):LegacyMockInterface&MockInterface&TSpy|array<TSpy>> $args * * @return LegacyMockInterface&MockInterface&TSpy */ function spy(...$args) { return Mockery::spy(...$args); } } if (! \function_exists('namedMock')) { /** * @template TNamedMock of object * * @param array<class-string<TNamedMock>|TNamedMock|array<TNamedMock>> $args * * @return LegacyMockInterface&MockInterface&TNamedMock */ function namedMock(...$args) { return Mockery::namedMock(...$args); } } if (! \function_exists('anyArgs')) { function anyArgs(): AnyArgs { return new AnyArgs(); } } if (! \function_exists('andAnyOtherArgs')) { function andAnyOtherArgs(): AndAnyOtherArgs { return new AndAnyOtherArgs(); } } if (! \function_exists('andAnyOthers')) { function andAnyOthers(): AndAnyOtherArgs { return new AndAnyOtherArgs(); } }