Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function update() |
||
38 | { |
||
39 | $attributes = [ |
||
40 | 'name' => $this->name, |
||
41 | 'frequency_in_minutes' => $this->frequencyInMinutes, |
||
42 | 'cron_expression' => $this->cronExpression, |
||
43 | 'grace_time_in_minutes' => $this->graceTimeInMinutes, |
||
44 | 'description' => $this->description, |
||
45 | ]; |
||
46 | |||
47 | $this->ohDear->updateCronCheck($this->id, $attributes); |
||
48 | } |
||
50 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.