PHP deprecation fixes, assigning null arguments in methods
This commit is contained in:
@@ -23,7 +23,7 @@ class CancelRequest extends Mailable
|
||||
* @param Service $o
|
||||
* @param string|NULL $notes
|
||||
*/
|
||||
public function __construct(Service $o,string $notes=NULL)
|
||||
public function __construct(Service $o,?string $notes=NULL)
|
||||
{
|
||||
$this->service = $o;
|
||||
$this->notes = $notes;
|
||||
|
Reference in New Issue
Block a user