mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-11-30 04:29:08 +01:00
15 lines
243 B
Plaintext
15 lines
243 B
Plaintext
|
<?php
|
||
|
namespace PHPUnit\Framework\MockObject\Builder;
|
||
|
|
||
|
class InvocationMocker
|
||
|
{
|
||
|
/**
|
||
|
* @param mixed ...$arguments
|
||
|
*
|
||
|
* @return static
|
||
|
*
|
||
|
* @throws RuntimeException
|
||
|
*/
|
||
|
public function with(...$arguments) {}
|
||
|
}
|