Apply fixes from StyleCI
This commit is contained in:
parent
aadd278c5a
commit
7f5b798427
@ -116,7 +116,10 @@ trait UpdateHandler
|
|||||||
|
|
||||||
public function set_channel_state($channel, $data)
|
public function set_channel_state($channel, $data)
|
||||||
{
|
{
|
||||||
if (isset($data['pts']) && $data['pts'] !== 0) { $this->should_serialize = true; $this->get_channel_state($channel)['pts'] = $data['pts']; };
|
if (isset($data['pts']) && $data['pts'] !== 0) {
|
||||||
|
$this->should_serialize = true;
|
||||||
|
$this->get_channel_state($channel)['pts'] = $data['pts'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function get_channel_difference($channel)
|
public function get_channel_difference($channel)
|
||||||
@ -165,9 +168,18 @@ trait UpdateHandler
|
|||||||
|
|
||||||
public function set_update_state($data)
|
public function set_update_state($data)
|
||||||
{
|
{
|
||||||
if (isset($data['pts']) && $data['pts'] !== 0) { $this->should_serialize = true; $this->get_update_state()['pts'] = $data['pts']; };
|
if (isset($data['pts']) && $data['pts'] !== 0) {
|
||||||
if (isset($data['seq']) && $data['seq'] !== 0) { $this->should_serialize = true; $this->get_update_state()['seq'] = $data['seq']; };
|
$this->should_serialize = true;
|
||||||
if (isset($data['date']) && $data['date'] > $this->get_update_state()['date']) { $this->should_serialize = true; $this->get_update_state()['date'] = $data['date']; };
|
$this->get_update_state()['pts'] = $data['pts'];
|
||||||
|
}
|
||||||
|
if (isset($data['seq']) && $data['seq'] !== 0) {
|
||||||
|
$this->should_serialize = true;
|
||||||
|
$this->get_update_state()['seq'] = $data['seq'];
|
||||||
|
}
|
||||||
|
if (isset($data['date']) && $data['date'] > $this->get_update_state()['date']) {
|
||||||
|
$this->should_serialize = true;
|
||||||
|
$this->get_update_state()['date'] = $data['date'];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public function &get_update_state()
|
public function &get_update_state()
|
||||||
@ -334,7 +346,6 @@ trait UpdateHandler
|
|||||||
if ($channel_id !== false && isset($options['date']) && $this->get_update_state()['date'] < $options['date']) {
|
if ($channel_id !== false && isset($options['date']) && $this->get_update_state()['date'] < $options['date']) {
|
||||||
$this->get_update_state()['date'] = $options['date'];
|
$this->get_update_state()['date'] = $options['date'];
|
||||||
$this->should_serialize = true;
|
$this->should_serialize = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
} elseif ($channel_id === false && isset($options['seq']) && $options['seq'] > 0) {
|
} elseif ($channel_id === false && isset($options['seq']) && $options['seq'] > 0) {
|
||||||
$seq = $options['seq'];
|
$seq = $options['seq'];
|
||||||
|
Loading…
Reference in New Issue
Block a user