Edit File: Describable.php
<?php declare(strict_types=1); namespace Pest\PendingCalls\Concerns; /** * @internal */ trait Describable { public ?string $describing = null; }
Back