ALPHA 3.0.3

This commit is contained in:
TheGamecraft
2018-09-11 14:26:31 -04:00
parent 14cea968d2
commit d1c3d60791
11 changed files with 98 additions and 10 deletions

View File

@@ -19,10 +19,11 @@ class Alert extends Notification
*
* @return void
*/
public function __construct($user,$msg)
public function __construct($user,$msg,$url)
{
$this->myNotification = $msg;
$this->fromUser = $user;
$this->myUrl = $url;
}
/**
@@ -47,6 +48,7 @@ class Alert extends Notification
return [
'from' => $this->fromUser,
'msg' => $this->myNotification,
'url' => $this->myUrl,
];
}
}