From d02ebe093bcf15bbe32aaa1712370c7c70165f8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Goetz?= Date: Mon, 29 Apr 2019 14:36:22 +0200 Subject: [PATCH] Fix missing variable --- libs/Console/RunAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/Console/RunAction.php b/libs/Console/RunAction.php index a3a62b4..66cfe11 100644 --- a/libs/Console/RunAction.php +++ b/libs/Console/RunAction.php @@ -19,7 +19,7 @@ trait RunAction $padding = $width - $this->getLength($title) - 10; try { - $response = $closure(function ($content) use (&$padding) { + $response = $closure(function ($content) use (&$padding, $verbose) { $padding -= $this->getLength($content); Daux::write($content, $verbose); });