We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a69d8cf commit 04593d8Copy full SHA for 04593d8
src/Installer.php
@@ -22,12 +22,10 @@ public function install()
22
if (Console::confirm('Create upload folder?')) {
23
try {
24
$this->createFolder('@webroot/uploads');
25
- echo 'Folder @webroot/uploads was created' . PHP_EOL;
+ Console::output('Folder @webroot/uploads was created');
26
} catch (\Exception $e) {
27
- echo $e->getMessage() . PHP_EOL;
+ Console::output($e->getMessage());
28
}
29
30
31
-
32
33
0 commit comments