protected function warmUpPhpArrayAdapter(PhpArrayAdapter
$phpArrayAdapter, array
$values): array
{ return (array) $phpArrayAdapter->
warmUp($values);
} /**
* @internal
*/
final protected function ignoreAutoloadException(string
$class, \Exception
$exception): void
{ try { ClassExistenceResource::
throwOnRequiredClass($class,
$exception);
} catch (\ReflectionException
) { } } /**
* @return bool false if there is nothing to warm-up
*/
abstract protected function doWarmUp(string
$cacheDir, ArrayAdapter
$arrayAdapter): bool;
}