Fixed inspection issues

This commit is contained in:
Jan Böhmer 2023-04-15 21:49:19 +02:00
parent 5f29ee9052
commit de96aae9a5
36 changed files with 55 additions and 53 deletions

View file

@ -43,7 +43,7 @@ final class PermissionData implements \JsonSerializable
public const CURRENT_SCHEMA_VERSION = 2;
/**
* @var array This array contains the permission values for each permission
* @var array|null This array contains the permission values for each permission
* This array contains the permission values for each permission, in the form of:
* permission => [
* operation => value,

View file

@ -216,7 +216,7 @@ class User extends AttachmentContainingDBElement implements UserInterface, HasPe
protected string $name = '';
/**
* @var array
* @var array|null
* @ORM\Column(type="json")
*/
protected ?array $settings = [];