| 1 | <?php |
||
| 10 | class CacheServiceProvider implements ServiceProviderInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $prefix = 'cache'; |
||
| 16 | |||
| 17 | public function register(Application $app) |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @param CacheProvider $cacheAdapter |
||
| 46 | * @param array $cacheSettings |
||
| 47 | */ |
||
| 48 | private function addConnection(CacheProvider $cacheAdapter, array $cacheSettings) |
||
| 56 | |||
| 57 | public function boot(Application $app) |
||
| 60 | } |
||
| 61 |