mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-26 11:48:49 +02:00
Fixed coding style.
This commit is contained in:
parent
0a94689d98
commit
f2ff77a8b3
44 changed files with 435 additions and 387 deletions
|
@ -32,15 +32,15 @@ use JsonSerializable;
|
|||
*/
|
||||
final class TreeViewNode implements JsonSerializable
|
||||
{
|
||||
protected $text;
|
||||
protected $href;
|
||||
protected $nodes;
|
||||
private $text;
|
||||
private $href;
|
||||
private $nodes;
|
||||
|
||||
protected $state = null;
|
||||
private $state = null;
|
||||
|
||||
protected $tags;
|
||||
private $tags;
|
||||
|
||||
protected $id;
|
||||
private $id;
|
||||
|
||||
/**
|
||||
* Creates a new TreeView node with the given parameters.
|
||||
|
|
|
@ -31,22 +31,22 @@ final class TreeViewNodeState implements JsonSerializable
|
|||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
protected $checked = null;
|
||||
private $checked = null;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
protected $disabled = null;
|
||||
private $disabled = null;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
protected $expanded = null;
|
||||
private $expanded = null;
|
||||
|
||||
/**
|
||||
* @var bool|null
|
||||
*/
|
||||
protected $selected = null;
|
||||
private $selected = null;
|
||||
|
||||
/**
|
||||
* @return bool|null
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue