home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Cache
➕ New
📤 Upload
✎ Editing:
CacheServiceProvider.php
← Back
<?php namespace Illuminate\Cache; use Illuminate\Support\ServiceProvider; class CacheServiceProvider 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('cache', function($app) { return new CacheManager($app); }); $this->app->bindShared('cache.store', function($app) { return $app['cache']->driver(); }); $this->app->bindShared('memcached.connector', function() { return new MemcachedConnector; }); $this->registerCommands(); } /** * Register the cache related console commands. * * @return void */ public function registerCommands() { $this->app->bindShared('command.cache.clear', function($app) { return new Console\ClearCommand($app['cache'], $app['files']); }); $this->app->bindShared('command.cache.table', function($app) { return new Console\CacheTableCommand($app['files']); }); $this->commands('command.cache.clear', 'command.cache.table'); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ 'cache', 'cache.store', 'memcached.connector', 'command.cache.clear', 'command.cache.table' ]; } }
💾 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