| Total Complexity | 12 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | class UniqueCache |
||
| 6 | { |
||
| 7 | private $cache = []; |
||
| 8 | |||
| 9 | public function exists($className, $field, $value) |
||
| 10 | { |
||
| 11 | if (!isset($this->cache[$className])) { |
||
| 12 | return false; |
||
| 13 | } |
||
| 14 | |||
| 15 | if (!is_array($this->cache[$className]) || !isset($this->cache[$className][$field])) { |
||
| 16 | return false; |
||
| 17 | } |
||
| 18 | |||
| 19 | if (!is_array($this->cache[$className][$field])) { |
||
| 20 | return false; |
||
| 21 | } |
||
| 22 | |||
| 23 | foreach ($this->cache[$className][$field] as $cacheValue) { |
||
| 24 | if ($value === $cacheValue) { |
||
| 25 | return true; |
||
| 26 | } |
||
| 27 | } |
||
| 28 | |||
| 29 | return false; |
||
| 30 | } |
||
| 31 | |||
| 32 | public function generate($className, $field, $callback) |
||
| 49 | } |
||
| 50 | |||
| 51 | public function clear() |
||
| 56 |