1 | <?php |
||
15 | class OnceSender implements SenderContract |
||
16 | { |
||
17 | /** |
||
18 | * @var array |
||
19 | */ |
||
20 | protected $notifications; |
||
21 | |||
22 | /** |
||
23 | * OnceSender constructor. |
||
24 | * |
||
25 | * @param array $notifications |
||
26 | */ |
||
27 | public function __construct(array $notifications) |
||
31 | |||
32 | /** |
||
33 | * Send the notification once. |
||
34 | * |
||
35 | * @param SenderManagerContract $sender |
||
36 | * @return bool |
||
37 | */ |
||
38 | public function send(SenderManagerContract $sender) |
||
52 | |||
53 | /** |
||
54 | * Get the base query. |
||
55 | * |
||
56 | * @param Notification $notification |
||
57 | * @return \Illuminate\Database\Eloquent\Builder |
||
58 | */ |
||
59 | protected function getQuery(Notification $notification) |
||
78 | |||
79 | /** |
||
80 | * @return \Illuminate\Database\Eloquent\Builder |
||
81 | */ |
||
82 | protected function getQueryInstance() |
||
92 | } |
||
93 |
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.