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