summaryrefslogtreecommitdiff
path: root/app/Console/Commands/CheckImage.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Console/Commands/CheckImage.php')
-rw-r--r--app/Console/Commands/CheckImage.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Console/Commands/CheckImage.php b/app/Console/Commands/CheckImage.php
index fcd6d4a..770db83 100644
--- a/app/Console/Commands/CheckImage.php
+++ b/app/Console/Commands/CheckImage.php
@@ -30,7 +30,15 @@ class CheckImage extends Command
{
$background = new Background();
echo "checkImage()\n";
+
+ ob_start();
+
$background->checkImage();
+
+ $msg = ob_get_contents();
+ ob_end_clean();
+ $this->info( $msg );
+
return Command::SUCCESS;
}
}