| 1 | <?php |
||
| 8 | class BillType extends Type |
||
| 9 | { |
||
| 10 | public $defaultValues = [ |
||
| 11 | 'success' => [ |
||
| 12 | 'deposit,*', |
||
| 13 | 'monthly,*', |
||
| 14 | ], |
||
| 15 | 'info' => [ |
||
| 16 | 'overuse,*', |
||
| 17 | ], |
||
| 18 | 'warning' => [ |
||
| 19 | 'monthly,monthly', |
||
| 20 | 'exchange,*' |
||
| 21 | ], |
||
| 22 | 'primary' => [ |
||
| 23 | 'monthly,leasing', |
||
| 24 | ], |
||
| 25 | 'default' => [ |
||
| 26 | 'monthly,hardware', |
||
| 27 | 'correction,*', |
||
| 28 | ], |
||
| 29 | ]; |
||
| 30 | public $field = 'type'; |
||
| 31 | public $i18nDictionary = 'hipanel.finance.billTypes'; |
||
| 32 | |||
| 33 | protected function getModelLabel(): string |
||
| 39 | } |
||
| 40 | |||
| 42 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.