Edit File: InvalidExpectationValue.php
<?php declare(strict_types=1); namespace Pest\Exceptions; use InvalidArgumentException; /** * @internal */ final class InvalidExpectationValue extends InvalidArgumentException { /** * @throws self */ public static function expected(string $type): never { throw new self(sprintf('Invalid expectation value type. Expected [%s].', $type)); } }
Back