1 | <?php |
||
11 | class MailTemplate extends Model implements MailTemplateInterface |
||
12 | { |
||
13 | protected $guarded = []; |
||
14 | |||
15 | public function scopeForMailable(Builder $query, Mailable $mailable): Builder |
||
19 | |||
20 | public static function findForMailable(Mailable $mailable): self |
||
30 | |||
31 | public function getHtmlLayout(): ?string |
||
35 | |||
36 | public function getTextLayout(): ?string |
||
40 | |||
41 | public function getVariables(): array |
||
51 | |||
52 | public function getVariablesAttribute(): array |
||
56 | |||
57 | public function subject(): string |
||
61 | |||
62 | public function htmlTemplate(): string |
||
66 | |||
67 | public function textTemplate(): string |
||
71 | } |
||
72 |
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.