| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function getFunctions() |
||
| 32 | { |
||
| 33 | return array( |
||
| 34 | new \Twig_SimpleFunction('chamilo_settings_all', array($this, 'getSettings')), |
||
| 35 | new \Twig_SimpleFunction('chamilo_settings_get', array($this, 'getSettingsParameter')), |
||
| 36 | new \Twig_SimpleFunction('chamilo_settings_has', [$this, 'hasSettingsParameter']), |
||
| 37 | ); |
||
| 38 | } |
||
| 39 | |||
| 71 |
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.