Show icons in tools menu

This commit is contained in:
Jan Böhmer 2022-08-13 02:40:43 +02:00
parent 18f41e14e6
commit 730e18748c
4 changed files with 52 additions and 49 deletions

View file

@ -246,9 +246,10 @@ final class TreeViewNode implements JsonSerializable
/**
* @param string|null $icon
*/
public function setIcon(?string $icon): void
public function setIcon(?string $icon): self
{
$this->icon = $icon;
return $this;
}