fix: printer method name

This commit is contained in:
Nuno Maduro
2024-09-10 22:29:01 +01:00
parent 95c5394b66
commit 49f15521e0
3 changed files with 5 additions and 5 deletions

View File

@ -0,0 +1,23 @@
<?php
declare(strict_types=1);
namespace Pest\Configuration;
use NunoMaduro\Collision\Adapters\Phpunit\Printers\DefaultPrinter;
/**
* @internal
*/
final readonly class Printer
{
/**
* Sets the theme to compact.
*/
public function compact(): self
{
DefaultPrinter::compact(true);
return $this;
}
}