From fa9674f18df2a591ac4a304c0e84176a6dfe2fff Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Mon, 9 Sep 2024 14:01:20 +0000 Subject: [PATCH] Fix code styling --- playground/clear.php | 2 +- src/helpers.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playground/clear.php b/playground/clear.php index 0249932..858e599 100644 --- a/playground/clear.php +++ b/playground/clear.php @@ -4,7 +4,7 @@ use function Laravel\Prompts\note; use function Laravel\Prompts\pause; -require __DIR__ . '/../vendor/autoload.php'; +require __DIR__.'/../vendor/autoload.php'; note('This will disappear.'); diff --git a/src/helpers.php b/src/helpers.php index 7b53323..8965cb8 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -88,7 +88,7 @@ function pause(string $message = 'Press enter to continue...'): bool */ function clear(): void { - (new Clear())->display(); + (new Clear)->display(); } }