Conditions | 3 |
Paths | 3 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
61 | public function fill(array $attributes) |
||
62 | { |
||
63 | foreach (static::getBehaviorAttributes() as $behaviorAttribute) { |
||
|
|||
64 | if (isset($attributes[$behaviorAttribute])) { |
||
65 | $this->setBehaviorValue($behaviorAttribute, $attributes[$behaviorAttribute]); |
||
66 | } |
||
67 | } |
||
68 | return parent::fill($attributes); |
||
69 | } |
||
70 | } |
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.