Fixed typo in apcu.php

This commit is contained in:
Lukas Metzger 2018-03-23 18:49:22 +01:00
parent e39bb6d13c
commit a573a7813e

View file

@ -23,7 +23,7 @@ class apcu implements InterfaceSessionstorage
$this->logger = $logger;
if (!function_exists('apcu_store')) {
$this->$logger->critical('PHP APCu extension is not available but configured as session storage backend exiting now');
$this->logger->critical('PHP APCu extension is not available but configured as session storage backend exiting now');
exit();
}
}