You appear to be a bot. Output may be restricted
Description
APCu prefix to use to cache found/not-found classes, if the extension is enabled.
Usage
$void = ClassLoader::setApcuPrefix( $apcuPrefix );
Parameters
- $apcuPrefix
- ( string|null ) required –
Returns
void
Source
File name: jetpack/vendor/composer/ClassLoader.php
Lines:
1 to 4 of 4
public function setApcuPrefix($apcuPrefix) { $this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null; }