| Conditions | 4 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | protected function getSetterMapping(ReflectionClass $reflectionClass): array |
||
| 29 | { |
||
| 30 | $parent = parent::getSetterMapping($reflectionClass); |
||
| 31 | $result = []; |
||
| 32 | foreach ($parent as $key => $keyMapping) { |
||
| 33 | if (strpos($key, 'auth') === false && strpos($key, 'remember') === false) { |
||
| 34 | $result[$key] = $keyMapping; |
||
| 35 | } |
||
| 36 | } |
||
| 37 | return $result; |
||
| 38 | } |
||
| 40 |