From 12e7439ee44a3408540d7cffec8b8f4d3be18af5 Mon Sep 17 00:00:00 2001 From: yaozm Date: Tue, 11 Jun 2024 15:44:09 +0800 Subject: [PATCH] refactor(commands): Update output method in WithSoarOptions trait - Updated the output method call to use the output property for consistency --- src/Commands/Concerns/WithSoarOptions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/Concerns/WithSoarOptions.php b/src/Commands/Concerns/WithSoarOptions.php index 7b69036..513b03d 100644 --- a/src/Commands/Concerns/WithSoarOptions.php +++ b/src/Commands/Concerns/WithSoarOptions.php @@ -49,7 +49,7 @@ protected function debugSoar(): Soar if ($this->option('verbose')) { $soar->dump(); - $this->newLine(); + $this->output->newLine(); } return $soar;