| 1 | <?php  | 
            ||
| 13 | class Notification extends Model  | 
            ||
| 14 | { | 
            ||
| 15 | protected $fillable = [  | 
            ||
| 16 | 'to_id',  | 
            ||
| 17 | 'to_type',  | 
            ||
| 18 | 'from_id',  | 
            ||
| 19 | 'from_type',  | 
            ||
| 20 | 'category_id',  | 
            ||
| 21 | 'read',  | 
            ||
| 22 | 'url',  | 
            ||
| 23 | 'extra',  | 
            ||
| 24 | 'expire_time',  | 
            ||
| 25 | 'stack_id',  | 
            ||
| 26 | ];  | 
            ||
| 27 | |||
| 28 | public function __construct(array $attributes = [])  | 
            ||
| 34 | |||
| 35 | public function category()  | 
            ||
| 39 | |||
| 40 | public function from()  | 
            ||
| 47 | |||
| 48 | public function to()  | 
            ||
| 55 | |||
| 56 | public function getCustomFillableFields()  | 
            ||
| 60 | |||
| 61 | protected function mergeFillables()  | 
            ||
| 67 | }  | 
            ||
| 68 | 
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.