home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Providers
➕ New
📤 Upload
✎ Editing:
ArtisanServiceProvider.php
← Back
<?php namespace Illuminate\Foundation\Providers; use Illuminate\Foundation\Artisan; use Illuminate\Support\ServiceProvider; use Illuminate\Foundation\Console\TailCommand; use Illuminate\Foundation\Console\ChangesCommand; use Illuminate\Foundation\Console\EnvironmentCommand; class ArtisanServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = true; /** * Register the service provider. * * @return void */ public function register() { $this->app->bindShared('artisan', function($app) { return new Artisan($app); }); $this->app->bindShared('command.tail', function() { return new TailCommand; }); $this->app->bindShared('command.changes', function() { return new ChangesCommand; }); $this->app->bindShared('command.environment', function() { return new EnvironmentCommand; }); $this->commands('command.tail', 'command.changes', 'command.environment'); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return array('artisan', 'command.changes', 'command.environment'); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel