fix comments

This commit is contained in:
Dennis Eichhorn 2019-02-17 21:36:14 +01:00
parent fd3778cde1
commit ed34d8d454
3 changed files with 3 additions and 3 deletions

View File

@ -153,7 +153,7 @@ class Dom implements \Serializable, ArrayableInterface
$this->delay = $unserialized['time'] ?? 0;
$this->selector = $unserialized['selector'] ?? '';
$this->action = $unserialized['action'] ?? '';
$this->content = $unserialized['content'] ?? '';
$this->content = $unserialized['content'] ?? DomAction::MODIFY;
}
/**

View File

@ -194,7 +194,7 @@ class Notify implements \Serializable, ArrayableInterface, \JsonSerializable
$unserialized = \json_decode($raw, true);
$this->delay = $unserialized['time'] ?? 0;
$this->stay = $unserialized['stay'] ?? '';
$this->stay = $unserialized['stay'] ?? 0;
$this->message = $unserialized['msg'] ?? '';
$this->title = $unserialized['title'] ?? '';
$this->level = $unserialized['level'] ?? 0;

View File

@ -137,7 +137,7 @@ class Redirect implements \Serializable, ArrayableInterface, \JsonSerializable
$this->delay = $unserialized['time'] ?? 0;
$this->uri = $unserialized['uri'] ?? '';
$this->new = $unserialized['new'] ?? '';
$this->new = $unserialized['new'] ?? false;
}
/**