class Repository implements Repository, ArrayAccess mixin Store

Traits

Properties

static protected array $macros

The registered string macros.

from  Macroable
protected Store $store

The cache store implementation.

protected Dispatcher $events

The event dispatcher implementation.

protected float|int $default

The default number of minutes to store items.

Methods

static void
macro(string $name, callable $macro)

Register a custom macro.

static bool
hasMacro(string $name)

Checks if macro is registered.

static mixed
__callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

mixed
__call(string $method, array $parameters)

Handle dynamic calls into macros or pass missing methods to the store.

void
__construct(Store $store)

Create a new cache repository instance.

bool
has(string $key)

Determine if an item exists in the cache.

mixed
get(string $key, mixed $default = null)

Retrieve an item from the cache by key.

array
many(array $keys)

Retrieve multiple items from the cache by key.

mixed
handleManyResult(array $keys, string $key, mixed $value)

Handle a result for the "many" method.

mixed
pull(string $key, mixed $default = null)

Retrieve an item from the cache and delete it.

void
put(string $key, mixed $value, DateTime|float|int $minutes = null)

Store an item in the cache.

void
putMany(array $values, float|int $minutes)

Store multiple items in the cache for a given number of minutes.

bool
add(string $key, mixed $value, DateTime|float|int $minutes)

Store an item in the cache if the key does not exist.

int|bool
increment(string $key, mixed $value = 1)

Increment the value of an item in the cache.

int|bool
decrement(string $key, mixed $value = 1)

Decrement the value of an item in the cache.

void
forever(string $key, mixed $value)

Store an item in the cache indefinitely.

mixed
remember(string $key, DateTime|float|int $minutes, Closure $callback)

Get an item from the cache, or store the default value.

mixed
sear(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

mixed
rememberForever(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

bool
forget(string $key)

Remove an item from the cache.

tags(array|mixed $names)

Begin executing a new tags operation if the store supports it.

string
itemKey(string $key)

Format the key for a cache item.

float|int
getDefaultCacheTime()

Get the default cache time.

$this
setDefaultCacheTime(float|int $minutes)

Set the default cache time in minutes.

getStore()

Get the cache store implementation.

void
event(string $event)

Fire an event for this cache instance.

void
setEventDispatcher(Dispatcher $events)

Set the event dispatcher instance.

bool
offsetExists(string $key)

Determine if a cached value exists.

mixed
offsetGet(string $key)

Retrieve an item from the cache by key.

void
offsetSet(string $key, mixed $value)

Store an item in the cache for the default time.

void
offsetUnset(string $key)

Remove an item from the cache.

float|int|null
getMinutes(DateTime|float|int $duration)

Calculate the number of minutes with the given duration.

void
__clone()

Clone cache repository instance.

Details

in Macroable at line 24
static void macro(string $name, callable $macro)

Register a custom macro.

Parameters

string $name
callable $macro

Return Value

void

in Macroable at line 35
static bool hasMacro(string $name)

Checks if macro is registered.

Parameters

string $name

Return Value

bool

in Macroable at line 49
static mixed __callStatic(string $method, array $parameters)

Dynamically handle calls to the class.

Parameters

string $method
array $parameters

Return Value

mixed

Exceptions

BadMethodCallException

at line 502
mixed __call(string $method, array $parameters)

Handle dynamic calls into macros or pass missing methods to the store.

Parameters

string $method
array $parameters

Return Value

mixed

at line 55
void __construct(Store $store)

Create a new cache repository instance.

Parameters

Store $store

Return Value

void

at line 66
bool has(string $key)

Determine if an item exists in the cache.

Parameters

string $key

Return Value

bool

at line 78
mixed get(string $key, mixed $default = null)

Retrieve an item from the cache by key.

Parameters

string $key
mixed $default

Return Value

mixed

at line 108
array many(array $keys)

Retrieve multiple items from the cache by key.

Items not found in the cache will have a null value.

Parameters

array $keys

Return Value

array

at line 127
protected mixed handleManyResult(array $keys, string $key, mixed $value)

Handle a result for the "many" method.

Parameters

array $keys
string $key
mixed $value

Return Value

mixed

at line 153
mixed pull(string $key, mixed $default = null)

Retrieve an item from the cache and delete it.

Parameters

string $key
mixed $default

Return Value

mixed

at line 168
void put(string $key, mixed $value, DateTime|float|int $minutes = null)

Store an item in the cache.

Parameters

string $key
mixed $value
DateTime|float|int $minutes

Return Value

void

at line 188
void putMany(array $values, float|int $minutes)

Store multiple items in the cache for a given number of minutes.

Parameters

array $values
float|int $minutes

Return Value

void

at line 207
bool add(string $key, mixed $value, DateTime|float|int $minutes)

Store an item in the cache if the key does not exist.

Parameters

string $key
mixed $value
DateTime|float|int $minutes

Return Value

bool

at line 241
int|bool increment(string $key, mixed $value = 1)

Increment the value of an item in the cache.

Parameters

string $key
mixed $value

Return Value

int|bool

at line 253
int|bool decrement(string $key, mixed $value = 1)

Decrement the value of an item in the cache.

Parameters

string $key
mixed $value

Return Value

int|bool

at line 265
void forever(string $key, mixed $value)

Store an item in the cache indefinitely.

Parameters

string $key
mixed $value

Return Value

void

at line 280
mixed remember(string $key, DateTime|float|int $minutes, Closure $callback)

Get an item from the cache, or store the default value.

Parameters

string $key
DateTime|float|int $minutes
Closure $callback

Return Value

mixed

at line 303
mixed sear(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

Parameters

string $key
Closure $callback

Return Value

mixed

at line 315
mixed rememberForever(string $key, Closure $callback)

Get an item from the cache, or store the default value forever.

Parameters

string $key
Closure $callback

Return Value

mixed

at line 337
bool forget(string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

bool

at line 352
TaggedCache tags(array|mixed $names)

Begin executing a new tags operation if the store supports it.

Parameters

array|mixed $names

Return Value

TaggedCache

Exceptions

BadMethodCallException

at line 373
protected string itemKey(string $key)

Format the key for a cache item.

Parameters

string $key

Return Value

string

at line 383
float|int getDefaultCacheTime()

Get the default cache time.

Return Value

float|int

at line 394
$this setDefaultCacheTime(float|int $minutes)

Set the default cache time in minutes.

Parameters

float|int $minutes

Return Value

$this

at line 406
Store getStore()

Get the cache store implementation.

Return Value

Store

at line 417
protected void event(string $event)

Fire an event for this cache instance.

Parameters

string $event

Return Value

void

at line 430
void setEventDispatcher(Dispatcher $events)

Set the event dispatcher instance.

Parameters

Dispatcher $events

Return Value

void

at line 441
bool offsetExists(string $key)

Determine if a cached value exists.

Parameters

string $key

Return Value

bool

at line 452
mixed offsetGet(string $key)

Retrieve an item from the cache by key.

Parameters

string $key

Return Value

mixed

at line 464
void offsetSet(string $key, mixed $value)

Store an item in the cache for the default time.

Parameters

string $key
mixed $value

Return Value

void

at line 475
void offsetUnset(string $key)

Remove an item from the cache.

Parameters

string $key

Return Value

void

at line 486
protected float|int|null getMinutes(DateTime|float|int $duration)

Calculate the number of minutes with the given duration.

Parameters

DateTime|float|int $duration

Return Value

float|int|null

at line 516
void __clone()

Clone cache repository instance.

Return Value

void