Skip to content

Commit 04593d8

Browse files
committed
fix code style
1 parent a69d8cf commit 04593d8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/Installer.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ public function install()
2222
if (Console::confirm('Create upload folder?')) {
2323
try {
2424
$this->createFolder('@webroot/uploads');
25-
echo 'Folder @webroot/uploads was created' . PHP_EOL;
25+
Console::output('Folder @webroot/uploads was created');
2626
} catch (\Exception $e) {
27-
echo $e->getMessage() . PHP_EOL;
27+
Console::output($e->getMessage());
2828
}
2929
}
3030
}
31-
32-
3331
}

0 commit comments

Comments
 (0)