mirror of
https://github.com/Karaka-Management/oms-Navigation.git
synced 2026-02-10 05:48:42 +00:00
php cs and stan fixes
This commit is contained in:
parent
b76cb8cc6d
commit
fb7eeece34
|
|
@ -24,19 +24,19 @@ namespace Modules\Navigation\Models;
|
||||||
*/
|
*/
|
||||||
class NavElement
|
class NavElement
|
||||||
{
|
{
|
||||||
public $id = 0;
|
public int $id = 0;
|
||||||
public $pid = '';
|
public string $pid = '';
|
||||||
public $name = '';
|
public string $name = '';
|
||||||
public $type = 1;
|
public int $type = 1;
|
||||||
public $subtype = 2;
|
public int $subtype = 2;
|
||||||
public $icon = null;
|
public ?string $icon = null;
|
||||||
public $uri = null;
|
public ?string $uri = null;
|
||||||
public $target = 'self';
|
public string $target = 'self';
|
||||||
public $action = null;
|
public ?string $action = null;
|
||||||
public $from = '0';
|
public string $from = '0';
|
||||||
public $order = 1;
|
public int $order = 1;
|
||||||
public $parent = 0;
|
public int $parent = 0;
|
||||||
public $permissionPerm = null;
|
public ?int $permissionPerm = null;
|
||||||
public $permissionType = null;
|
public ?int $permissionType = null;
|
||||||
public $permissionElement = null;
|
public ?int $permissionElement = null;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user