/var/www/flurhymez/vendor/phpspec/prophecy/src/Prophecy/Argument/Token
NameSizeModeActions
AnyValuesToken.php9860644editdlrm
AnyValueToken.php9390644editdlrm
ApproximateValueToken.php11660644editdlrm
ArrayCountToken.php17610644editdlrm
ArrayEntryToken.php37320644editdlrm
ArrayEveryEntryToken.php16820644editdlrm
CallbackToken.php15800644editdlrm
ExactValueToken.php30080644editdlrm
IdenticalValueToken.php15100644editdlrm
InArrayToken.php14890644editdlrm
LogicalAndToken.php17840644editdlrm
LogicalNotToken.php15510644editdlrm
NotInArrayToken.php14980644editdlrm
ObjectStateToken.php26170644editdlrm
StringContainsToken.php13000644editdlrm
TokenInterface.php9120644editdlrm
TypeToken.php17010644editdlrm
Edit: /var/www/flurhymez/vendor/phpspec/prophecy/src/Prophecy/Argument/Token/AnyValuesToken.php (986B)
* Marcello Duarte * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Prophecy\Argument\Token; /** * Any values token. * * @author Konstantin Kudryashov */ class AnyValuesToken implements TokenInterface { /** * Always scores 2 for any argument. * * @param $argument * * @return int */ public function scoreArgument($argument) { return 2; } /** * Returns true to stop wildcard from processing other tokens. * * @return bool */ public function isLast() { return true; } /** * Returns string representation for token. * * @return string */ public function __toString() { return '* [, ...]'; } }