diff --git a/src/Tempest/Console/src/Components/Static/StaticSearchComponent.php b/src/Tempest/Console/src/Components/Static/StaticSearchComponent.php index 7e837b32b..4e279896b 100644 --- a/src/Tempest/Console/src/Components/Static/StaticSearchComponent.php +++ b/src/Tempest/Console/src/Components/Static/StaticSearchComponent.php @@ -11,6 +11,7 @@ final readonly class StaticSearchComponent implements StaticConsoleComponent { private const string SEARCH_AGAIN = 'Search again'; + private const string CANCEL = 'Cancel'; public function __construct( diff --git a/src/Tempest/Console/src/Testing/ConsoleTester.php b/src/Tempest/Console/src/Testing/ConsoleTester.php index 549b82e25..46dddb398 100644 --- a/src/Tempest/Console/src/Testing/ConsoleTester.php +++ b/src/Tempest/Console/src/Testing/ConsoleTester.php @@ -296,7 +296,7 @@ public function withPrompting(): self public function dd(): self { - dd($this->output->asFormattedString()); + ld($this->output->asFormattedString()); return $this; }