Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
REBELinBLUE committed Feb 6, 2016
1 parent 98eb014 commit 00720bb
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions artisan
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if (isset($argv[1]) && $argv[1] == 'clear-compiled') {
foreach (glob(__DIR__ . '/bootstrap/cache/*.*') as $file) {
@unlink($file);
}

exit;
}

Expand Down Expand Up @@ -38,11 +38,11 @@ $app = require_once __DIR__ . '/bootstrap/app.php';
|
*/

$kernel = $app->make('Illuminate\Contracts\Console\Kernel');
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);

$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
);

/*
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/

$app = new Illuminate\Foundation\Application(
realpath(__DIR__.'/../')
realpath(__DIR__ . '/../')
);

/*
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
|
*/

$compiledPath = __DIR__.'/cache/compiled.php';
$compiledPath = __DIR__ . '/cache/compiled.php';

if (file_exists($compiledPath)) {
require $compiledPath;
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"minimum-stability": "stable",
"type": "project",
"keywords": ["php", "deployer", "deploy", "deployment"],
"homepage": "http://deployer.rebelinblue.com/",
"homepage": "http://phpdeployment.org/",
"license": "BSD-2-Clause",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion config/clockwork.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

'storage_files_path' => storage_path('clockwork'),

'storage_sql_database' => storage_path('clockwork.sqlite'),
'storage_sql_database' => database_path('clockwork.sqlite'),
'storage_sql_table' => 'clockwork',

/*
Expand Down
10 changes: 5 additions & 5 deletions config/jwt.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
|
*/

'user' => 'REBELinBLUE\Deployer\User',
'user' => REBELinBLUE\Deployer\User::class,

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -124,7 +124,7 @@
|
*/

'user' => 'Tymon\JWTAuth\Providers\User\EloquentUserAdapter',
'user' => Tymon\JWTAuth\Providers\User\EloquentUserAdapter::class,

/*
|--------------------------------------------------------------------------
Expand All @@ -135,7 +135,7 @@
|
*/

'jwt' => 'Tymon\JWTAuth\Providers\JWT\NamshiAdapter',
'jwt' => Tymon\JWTAuth\Providers\JWT\NamshiAdapter::class,

/*
|--------------------------------------------------------------------------
Expand All @@ -146,7 +146,7 @@
|
*/

'auth' => 'Tymon\JWTAuth\Providers\Auth\IlluminateAuthAdapter',
'auth' => Tymon\JWTAuth\Providers\Auth\IlluminateAuthAdapter::class,

/*
|--------------------------------------------------------------------------
Expand All @@ -157,7 +157,7 @@
|
*/

'storage' => 'Tymon\JWTAuth\Providers\Storage\IlluminateCacheAdapter',
'storage' => Tymon\JWTAuth\Providers\Storage\IlluminateCacheAdapter::class,

]

Expand Down
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
|
*/

$kernel = $app->make('Illuminate\Contracts\Http\Kernel');
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
Expand Down

0 comments on commit 00720bb

Please sign in to comment.