Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function __construct(array $options = array()) |
||
26 | { |
||
27 | parent::__construct($options); |
||
28 | |||
29 | $this->callbacks = array( |
||
30 | 'increment' => 'xcache_inc', |
||
31 | 'decrement' => 'xcache_dec', |
||
32 | 'exists' => 'xcache_isset', |
||
33 | 'load' => 'xcache_get', |
||
34 | 'save' => 'xcache_set', |
||
35 | ); |
||
36 | } |
||
37 | |||
58 |