mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-06 23:14:11 +09:00
Add vendor and .env to make usable
This commit is contained in:
29
vendor/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php
vendored
Normal file
29
vendor/phpunit/phpunit-mock-objects/src/Matcher/AnyInvokedCount.php
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of the phpunit-mock-objects package.
|
||||
*
|
||||
* (c) Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
namespace PHPUnit\Framework\MockObject\Matcher;
|
||||
|
||||
/**
|
||||
* Invocation matcher which checks if a method has been invoked zero or more
|
||||
* times. This matcher will always match.
|
||||
*/
|
||||
class AnyInvokedCount extends InvokedRecorder
|
||||
{
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function toString()
|
||||
{
|
||||
return 'invoked zero or more times';
|
||||
}
|
||||
|
||||
public function verify()
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user