| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class HablameNotification extends Notification |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Get the notification's delivery channels. |
||
| 11 | * |
||
| 12 | * @param \Illuminate\Notifications\Notifiable $notifiable |
||
| 13 | */ |
||
| 14 | public function via($notifiable): array |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Returns the SMS(s) to send through Háblame SMS. |
||
| 21 | * |
||
| 22 | * @param \Illuminate\Notifications\Notifiable $notifiable |
||
| 23 | */ |
||
| 24 | abstract public function toHablameNotification($notifiable): HablameMessage; |
||
| 25 | } |
||
| 26 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.