Conditions | 4 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace AdammBalogh\KeyValueStore\Adapter; |
||
26 | public static function hasInternalExpireTime($unserializedValue) |
||
27 | { |
||
28 | return ( |
||
29 | is_array($unserializedValue) |
||
30 | && array_key_exists('v', $unserializedValue) |
||
31 | && array_key_exists('s', $unserializedValue) |
||
32 | && array_key_exists('ts', $unserializedValue) |
||
33 | ); |
||
34 | } |
||
35 | |||
84 |