mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-24 15:18:40 +00:00
fix comments
This commit is contained in:
parent
fd3778cde1
commit
ed34d8d454
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user