W3cubDocs

/Laravel 5.3

CacheManager

class CacheManager implements Factory (View source)

Methods

void __construct(Application $app)

Create a new Cache manager instance.

mixed store(string|null $name = null)

Get a cache store instance by name.

mixed driver(string $driver = null)

Get a cache driver instance.

Repository repository(Store $store)

Create a new cache repository with the given implementation.

string getDefaultDriver()

Get the default cache driver name.

void setDefaultDriver(string $name)

Set the default cache driver name.

$this extend(string $driver, Closure $callback)

Register a custom driver creator Closure.

mixed __call(string $method, array $parameters)

Dynamically call the default driver instance.

Details

void __construct(Application $app)

Create a new Cache manager instance.

Parameters

Application $app

Return Value

void

mixed store(string|null $name = null)

Get a cache store instance by name.

Parameters

string|null $name

Return Value

mixed

mixed driver(string $driver = null)

Get a cache driver instance.

Parameters

string $driver

Return Value

mixed

Repository repository(Store $store)

Create a new cache repository with the given implementation.

Parameters

Store $store

Return Value

Repository

string getDefaultDriver()

Get the default cache driver name.

Return Value

string

void setDefaultDriver(string $name)

Set the default cache driver name.

Parameters

string $name

Return Value

void

$this extend(string $driver, Closure $callback)

Register a custom driver creator Closure.

Parameters

string $driver
Closure $callback

Return Value

$this

mixed __call(string $method, array $parameters)

Dynamically call the default driver instance.

Parameters

string $method
array $parameters

Return Value

mixed

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Cache/CacheManager.html