Apply fixes from StyleCI (#788)

This commit is contained in:
Phan An 2018-08-23 08:58:43 +02:00 committed by GitHub
parent f409c5bc47
commit 3ab55d438b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -211,7 +211,7 @@ class InitCommand extends Command
$dbSetUp = true;
} catch (Exception $e) {
$this->error($e->getMessage());
$this->warn(PHP_EOL . 'Koel cannot connect to the database. Let\'s set it up.');
$this->warn(PHP_EOL.'Koel cannot connect to the database. Let\'s set it up.');
$this->setUpDatabase();
}
}

View file

@ -1,7 +1,8 @@
<?php
namespace App\Services\Streamers {
function file_exists() {
function file_exists()
{
return true;
}
}