Add type annotations to MatrixTicket class

This commit is contained in:
Ben 2023-07-19 14:11:47 +02:00
parent 317630c054
commit e1d7f7c8d9
Signed by: ben
GPG Key ID: 1353F41CF1CFF2D3
1 changed files with 5 additions and 5 deletions

View File

@ -7,11 +7,11 @@ use OCP\AppFramework\Db\Entity;
class MatrixTicket extends Entity implements JsonSerializable
{
protected $matrixControlRoom;
protected $matrixAssistedUser; // The ID of the person who created the ticket. Usually the person who needs help.
protected $matrixHelperUser;
protected $status;
protected $version;
protected string $matrixControlRoom;
protected string $matrixAssistedUser; // The ID of the person who created the ticket. Usually the person who needs help.
protected string $matrixHelperUser;
protected string $status;
protected int $version;
public function jsonSerialize(): array
{