| Total Complexity | 4 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class DeviceRegister extends Notification |
||
| 10 | { |
||
| 11 | use Queueable; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Create a new notification instance. |
||
| 15 | * |
||
| 16 | * @return void |
||
| 17 | */ |
||
| 18 | public function __construct() |
||
| 19 | { |
||
| 20 | // |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Get the notification's delivery channels. |
||
| 25 | * |
||
| 26 | * @param mixed $notifiable |
||
| 27 | * @return string[] |
||
| 28 | */ |
||
| 29 | public function via($notifiable) |
||
|
|
|||
| 30 | { |
||
| 31 | return [ 'nexmo' ]; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the SMS representation of the notification. |
||
| 36 | * |
||
| 37 | * @param mixed $notifiable |
||
| 38 | * @return \Illuminate\Notifications\Messages\NexmoMessage |
||
| 39 | */ |
||
| 40 | public function toNexmo($notifiable) |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Get the array representation of the notification. |
||
| 49 | * |
||
| 50 | * @param mixed $notifiable |
||
| 51 | * @return array |
||
| 52 | */ |
||
| 53 | public function toArray($notifiable) |
||
| 56 | // |
||
| 57 | ]; |
||
| 58 | } |
||
| 60 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.