1 | <?php |
||
9 | abstract class BaseNotification extends Notification |
||
10 | { |
||
11 | use Queueable; |
||
12 | |||
13 | /** @var int */ |
||
14 | protected $amount = 0; |
||
15 | |||
16 | /** @var string */ |
||
17 | protected $message; |
||
18 | |||
19 | public function __construct($message = null) |
||
23 | |||
24 | public function setMessage($message) |
||
30 | |||
31 | public function setAmount($amount) |
||
37 | |||
38 | public function via($notifiable) |
||
42 | |||
43 | public function toArray($notifiable) |
||
51 | |||
52 | public function toEngageSpark($notifiable) |
||
60 | |||
61 | public function getContent($notifiable) |
||
65 | |||
66 | protected function getMode($notifiable) |
||
70 | |||
71 | protected function getAmount($notifiable) |
||
75 | } |
||
76 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.