| Conditions | 3 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function __construct() |
||
| 12 | { |
||
| 13 | if (!function_exists('apc_exists') && !function_exists('apcu_exists')) { |
||
| 14 | throw new \Millennium\Cache\Exceptions\DriverNotFoundException('APC(u) not installed on your system'); |
||
| 15 | } |
||
| 16 | $this->isAPCu = (bool) function_exists('apcu_exists'); |
||
| 17 | } |
||
| 18 | |||
| 34 |