Last active
May 13, 2019 00:11
-
-
Save forethoughtde/693f8ea1bb0fa01d3db64e2f8415a2f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class PacketReceiveNotification extends Notification | |
{ | |
use Queueable; | |
protected $delivery_id; | |
/** | |
* Create a new notification instance. | |
* | |
* @return void | |
*/ | |
public function __construct($delivery_id) | |
{ | |
// | |
$this->delivery_id = $delivery_id; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment