PHP Class Neos\Cache\EnvironmentConfiguration

Datei anzeigen Open project: neos/flow-development-collection

Protected Properties

Property Type Description
$applicationIdentifier string The installations path would be a good identifier. If your application supports different contexts that shouldn't share caches an identifier for that should also be included.
$fileCacheBasePath string Base path for any file based caches.
$maximumPathLength integer The maximum allowed length of a path.

Public Methods

Method Description
__construct ( string $applicationIdentifier, string $fileCacheBasePath, integer $maximumPathLength ) EnvironmentConfiguration constructor.
getApplicationIdentifier ( ) : string
getFileCacheBasePath ( ) : string
getMaximumPathLength ( ) : integer

Method Details

__construct() public method

EnvironmentConfiguration constructor.
public __construct ( string $applicationIdentifier, string $fileCacheBasePath, integer $maximumPathLength )
$applicationIdentifier string
$fileCacheBasePath string
$maximumPathLength integer

getApplicationIdentifier() public method

public getApplicationIdentifier ( ) : string
return string

getFileCacheBasePath() public method

public getFileCacheBasePath ( ) : string
return string

getMaximumPathLength() public method

public getMaximumPathLength ( ) : integer
return integer

Property Details

$applicationIdentifier protected_oe property

The installations path would be a good identifier. If your application supports different contexts that shouldn't share caches an identifier for that should also be included.
protected string $applicationIdentifier
return string

$fileCacheBasePath protected_oe property

Base path for any file based caches.
protected string $fileCacheBasePath
return string

$maximumPathLength protected_oe property

The maximum allowed length of a path.
protected int $maximumPathLength
return integer