Fixed some inspection issues.

This commit is contained in:
Jan Böhmer 2022-08-14 19:39:07 +02:00
parent 639829f5c5
commit 8e6bc25d2e
19 changed files with 39 additions and 40 deletions

View file

@ -276,11 +276,11 @@ final class TreeViewNode implements JsonSerializable
$ret['state'] = $this->state;
}
if ($this->href == null) {
if ($this->href === null) {
$ret['selectable'] = false;
}
if ($this->icon != null) {
if ($this->icon !== null) {
$ret['icon'] = $this->icon;
}