mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
More PHP 7.1 nullables
This commit is contained in:
@ -150,7 +150,7 @@ class TimingsHandler{
|
||||
* @param string $name
|
||||
* @param TimingsHandler $parent
|
||||
*/
|
||||
public function __construct(string $name, TimingsHandler $parent = null){
|
||||
public function __construct(string $name, ?TimingsHandler $parent = null){
|
||||
$this->name = $name;
|
||||
$this->parent = $parent;
|
||||
|
||||
|
Reference in New Issue
Block a user