final class CacheStoreCheck implements EnvironmentCheckInterface

Checks and displays cache store configuration.

This is an informational check that shows the current store name, driver, and tagging mode. It always passes if the store is a Redis store.

Methods

__construct(string $storeName, string $driver, string $taggingMode)

No description

string
name()

Get the human-readable name of this check.

run()

Run the check and return results.

string|null
getFixInstructions()

Get details about how to fix a failed check.

Details

at line 17
__construct(string $storeName, string $driver, string $taggingMode)

No description

Parameters

string $storeName
string $driver
string $taggingMode

at line 24
string name()

Get the human-readable name of this check.

Return Value

string

at line 29
CheckResult run()

Run the check and return results.

Return Value

CheckResult

at line 52
string|null getFixInstructions()

Get details about how to fix a failed check.

Returns null if no specific fix instructions are needed.

Return Value

string|null