Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
Updating Laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
ATofighi committed Feb 4, 2015
1 parent 8fb0c85 commit 78a9e17
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -12,6 +12,7 @@ vendor/

### Laravel
/bootstrap/compiled.php
/node_modules
.env.*.php
.env.php

Expand Down
14 changes: 9 additions & 5 deletions artisan
Expand Up @@ -13,9 +13,9 @@
|
*/

require __DIR__ . '/bootstrap/autoload.php';
require __DIR__.'/bootstrap/autoload.php';

$app = require_once __DIR__ . '/bootstrap/app.php';
$app = require_once __DIR__.'/bootstrap/app.php';

/*
|--------------------------------------------------------------------------
Expand All @@ -28,8 +28,10 @@ $app = require_once __DIR__ . '/bootstrap/app.php';
|
*/

$status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
new Symfony\Component\Console\Input\ArgvInput,
$kernel = $app->make('Illuminate\Contracts\Console\Kernel');

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

Expand All @@ -44,4 +46,6 @@ $status = $app->make('Illuminate\Contracts\Console\Kernel')->handle(
|
*/

exit($status);
$kernel->terminate($input, $status);

exit($status);
2 changes: 1 addition & 1 deletion config/app.php
Expand Up @@ -91,7 +91,7 @@
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Settings: "single", "daily", "syslog"
| Available Settings: "single", "daily", "syslog", "errorlog"
|
*/

Expand Down

0 comments on commit 78a9e17

Please sign in to comment.