From 1294b0cec6d528a667d6fa0fa7912929f8fdf3c3 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 18 Jul 2023 09:51:53 +0200 Subject: [PATCH] fix #6066 @0:05 --- src/CommandLine.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/CommandLine.php b/src/CommandLine.php index 2e85679..57ea48d 100644 --- a/src/CommandLine.php +++ b/src/CommandLine.php @@ -276,6 +276,15 @@ class CommandLine } } + public function dddd() + { + if (function_exists('dddd')) { + dddd($this->getCommand(), $this->getOutput()); + } else { + $this->dd(); + } + } + /** * @return string */ -- 2.39.5