implemements pipelines and adds tests for it

This commit is contained in:
Fabio Ivona
2021-10-31 15:23:28 +01:00
parent 8174f2d973
commit 3943919709
7 changed files with 421 additions and 17 deletions

View File

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