Fix missing variable

This commit is contained in:
Stéphane Goetz
2019-04-29 14:36:22 +02:00
committed by GitHub
parent 97f6175f1c
commit d02ebe093b

View File

@ -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);
});