fix tests

This commit is contained in:
Fabio Ivona
2021-11-26 16:15:36 +01:00
parent 7fd9cfa2e9
commit 8494d4566a
2 changed files with 4 additions and 20 deletions

View File

@ -39,7 +39,9 @@ trait Extendable
}
/**
* Recister an interceptor that should replace an existing expectation.
* Register an interceptor that should replace an existing expectation.
*
* @param string|Closure(mixed $value, mixed ...$arguments):bool $filter
*/
public static function intercept(string $name, string|Closure $filter, Closure $handler): void
{
@ -51,7 +53,7 @@ trait Extendable
self::pipe($name, function ($next, ...$arguments) use ($handler, $filter) {
/* @phpstan-ignore-next-line */
if ($filter($this->value)) {
if ($filter($this->value, ...$arguments)) {
//@phpstan-ignore-next-line
$handler->bindTo($this, get_class($this))(...$arguments);

View File

@ -1,18 +0,0 @@
<?php
declare(strict_types=1);
namespace Pest\Exceptions;
use InvalidArgumentException;
/**
* @internal
*/
final class ExpectationNotFoundException extends InvalidArgumentException
{
public function __construct(string $expectationName)
{
parent::__construct(sprintf('Impossible to find [%s] expectation', $expectationName));
}
}