Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ composer.lock
.DS_Store
Thumbs.db
.idea/
.phpunit.result.cache
.phpunit.result.cache
.direnv
.envrc
2 changes: 0 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"nesbot/carbon": "^2.71",
"opis/closure": "~3.6",
"pda/pheanstalk": "~4.0",
"phpseclib/phpseclib": "~2.0",
"predis/predis": "^1.1",
"symfony/browser-kit": "~6.4",
"symfony/console": "~6.4",
Comment thread
agissept marked this conversation as resolved.
Expand Down Expand Up @@ -59,7 +58,6 @@
"illuminate/pagination": "self.version",
"illuminate/queue": "self.version",
"illuminate/redis": "self.version",
Comment thread
agissept marked this conversation as resolved.
"illuminate/remote": "self.version",
"illuminate/routing": "self.version",
"illuminate/session": "self.version",
"illuminate/support": "self.version",
Expand Down
1 change: 0 additions & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,6 @@ public function registerCoreContainerAliases()
'router' => 'Illuminate\Routing\Router',
'session' => 'Illuminate\Session\SessionManager',
'session.store' => 'Illuminate\Session\Store',
'remote' => 'Illuminate\Remote\RemoteManager',
'url' => 'Illuminate\Routing\UrlGenerator',
'validator' => 'Illuminate\Validation\Factory',
Comment thread
agissept marked this conversation as resolved.
'view' => 'Illuminate\View\Factory',
Comment thread
agissept marked this conversation as resolved.
Expand Down
168 changes: 0 additions & 168 deletions src/Illuminate/Foundation/Console/TailCommand.php

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

use Illuminate\Foundation\Artisan;
use Illuminate\Support\ServiceProvider;
use Illuminate\Foundation\Console\TailCommand;
use Illuminate\Foundation\Console\ChangesCommand;
use Illuminate\Foundation\Console\EnvironmentCommand;

Expand All @@ -27,11 +26,6 @@ public function register()
return new Artisan($app);
});

$this->app->bindShared('command.tail', function()
{
return new TailCommand;
});

$this->app->bindShared('command.changes', function()
{
return new ChangesCommand;
Comment thread
agissept marked this conversation as resolved.
Expand Down
Loading