Add type annotations to MatrixTicket class
This commit is contained in:
parent
317630c054
commit
e1d7f7c8d9
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue