chore: updates snapshots

This commit is contained in:
Nuno Maduro
2025-07-25 21:29:26 -06:00
parent 3e86e158b2
commit d187566e63
3 changed files with 8 additions and 3 deletions

View File

@ -6,8 +6,14 @@ namespace Pest\Support;
final readonly class Description implements \Stringable
{
/**
* Creates a new Description instance.
*/
public function __construct(private string $description) {}
/**
* Returns the description as a string.
*/
public function __toString(): string
{
return $this->description;