From 4009177e563a850c960584a526f1016fb997bfca Mon Sep 17 00:00:00 2001 From: Enzo Innocenzi Date: Mon, 3 Aug 2020 21:49:09 +0200 Subject: [PATCH] style: fix unary_operator_space --- src/Laravel/Commands/PestInstallCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Laravel/Commands/PestInstallCommand.php b/src/Laravel/Commands/PestInstallCommand.php index 2885f629..c5247548 100644 --- a/src/Laravel/Commands/PestInstallCommand.php +++ b/src/Laravel/Commands/PestInstallCommand.php @@ -60,7 +60,7 @@ final class PestInstallCommand extends Command $this->output->success('`tests/Pest.php` created successfully.'); $this->output->success('`tests/Helpers.php` created successfully.'); - if (! (bool) $this->option('no-interaction')) { + if (!(bool) $this->option('no-interaction')) { (new \Pest\Console\Thanks($this->output))(); } }