| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 39 | public function extractClassMethods(): array |
||
| 40 | { |
||
| 41 | if ($this->cache->has($this->cacheKey)) { |
||
| 42 | return $this->cache->get($this->cacheKey); |
||
| 43 | } |
||
| 44 | |||
| 45 | $classMethods = $this->extractor->extractClassMethods(); |
||
| 46 | $this->cache->set($this->cacheKey, $classMethods); |
||
| 47 | return $classMethods; |
||
| 48 | } |
||
| 50 |