芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/midiatech/vendor/illuminate/cache/CacheServiceProvider.php
app->singleton('cache', function ($app) { return new CacheManager($app); }); $this->app->singleton('cache.store', function ($app) { return $app['cache']->driver(); }); $this->app->singleton('memcached.connector', function () { return new MemcachedConnector; }); $this->registerCommands(); } /** * Register the cache related console commands. * * @return void */ public function registerCommands() { $this->app->singleton('command.cache.clear', function ($app) { return new ClearCommand($app['cache']); }); $this->commands('command.cache.clear'); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ 'cache', 'cache.store', 'memcached.connector', 'command.cache.clear', ]; } }