1 | <?php |
||
10 | class MailTemplate extends Model |
||
11 | { |
||
12 | protected $guarded = []; |
||
13 | |||
14 | public function scopeForMailable(Builder $query, Mailable $mailable): Builder |
||
18 | |||
19 | public static function findForMailable(Mailable $mailable): self |
||
29 | |||
30 | public function getLayout(): ?string |
||
34 | |||
35 | public function isMarkdown(): bool |
||
39 | |||
40 | public function getVariables(): array |
||
46 | |||
47 | public function getVariablesAttribute(): array |
||
51 | } |
||
52 |
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.