mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-11-26 20:15:08 +01:00
5128529ca9
This hides them from PHPStorm, preventing false positives it used to emit.
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) {}
|
|
}
|