| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | protected function getGetterMapping(ReflectionClass $reflectionClass): array |
||
| 17 | { |
||
| 18 | $parent = parent::getGetterMapping($reflectionClass); |
||
| 19 | $result = []; |
||
| 20 | foreach ($parent as $key => $keyMapping) { |
||
| 21 | if (strpos($key, 'auth') === false && strpos($key, 'remember') === false) { |
||
| 22 | $result[$key] = $keyMapping; |
||
| 23 | } |
||
| 24 | } |
||
| 25 | return $result; |
||
| 26 | } |
||
| 40 |