Merge pull request #11 from Neur0toxine/master
[fix] update phpdoc for getters
This commit is contained in:
commit
0534f31c34
@ -136,7 +136,7 @@ class Bot implements ModelInterface
|
|||||||
private $isSystem;
|
private $isSystem;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -184,7 +184,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
@ -200,7 +200,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array|null
|
||||||
*/
|
*/
|
||||||
public function getEvents(): ?array
|
public function getEvents(): ?array
|
||||||
{
|
{
|
||||||
@ -216,7 +216,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getClientId(): ?string
|
public function getClientId(): ?string
|
||||||
{
|
{
|
||||||
@ -232,7 +232,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAvatarUrl(): ?string
|
public function getAvatarUrl(): ?string
|
||||||
{
|
{
|
||||||
@ -248,7 +248,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array|null
|
||||||
*/
|
*/
|
||||||
public function getRoles(): ?array
|
public function getRoles(): ?array
|
||||||
{
|
{
|
||||||
@ -264,7 +264,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getDeactivatedAt(): ?string
|
public function getDeactivatedAt(): ?string
|
||||||
{
|
{
|
||||||
@ -280,7 +280,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isActive(): ?bool
|
public function isActive(): ?bool
|
||||||
{
|
{
|
||||||
@ -296,7 +296,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isSelf(): ?bool
|
public function isSelf(): ?bool
|
||||||
{
|
{
|
||||||
@ -312,7 +312,7 @@ class Bot implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isSystem(): ?bool
|
public function isSystem(): ?bool
|
||||||
{
|
{
|
||||||
|
@ -101,7 +101,7 @@ class Channel implements ModelInterface
|
|||||||
private $name;
|
private $name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -181,7 +181,7 @@ class Channel implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isActive(): ?bool
|
public function isActive(): ?bool
|
||||||
{
|
{
|
||||||
@ -197,7 +197,7 @@ class Channel implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettings
|
* @return ChannelSettings|null
|
||||||
*/
|
*/
|
||||||
public function getSettings(): ?ChannelSettings
|
public function getSettings(): ?ChannelSettings
|
||||||
{
|
{
|
||||||
@ -213,7 +213,7 @@ class Channel implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getType(): ?string
|
public function getType(): ?string
|
||||||
{
|
{
|
||||||
@ -229,7 +229,7 @@ class Channel implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
|
@ -90,7 +90,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
private $file;
|
private $file;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettingsStatus
|
* @return ChannelSettingsStatus|null
|
||||||
*/
|
*/
|
||||||
public function getStatus(): ?ChannelSettingsStatus
|
public function getStatus(): ?ChannelSettingsStatus
|
||||||
{
|
{
|
||||||
@ -106,7 +106,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isSpamAllowed(): ?bool
|
public function isSpamAllowed(): ?bool
|
||||||
{
|
{
|
||||||
@ -122,7 +122,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettingsItem
|
* @return ChannelSettingsItem|null
|
||||||
*/
|
*/
|
||||||
public function getText(): ?ChannelSettingsItem
|
public function getText(): ?ChannelSettingsItem
|
||||||
{
|
{
|
||||||
@ -138,7 +138,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettingsItem
|
* @return ChannelSettingsItem|null
|
||||||
*/
|
*/
|
||||||
public function getProduct(): ?ChannelSettingsItem
|
public function getProduct(): ?ChannelSettingsItem
|
||||||
{
|
{
|
||||||
@ -154,7 +154,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettingsItem
|
* @return ChannelSettingsItem|null
|
||||||
*/
|
*/
|
||||||
public function getOrder(): ?ChannelSettingsItem
|
public function getOrder(): ?ChannelSettingsItem
|
||||||
{
|
{
|
||||||
@ -170,7 +170,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettingsItem
|
* @return ChannelSettingsItem|null
|
||||||
*/
|
*/
|
||||||
public function getImage(): ?ChannelSettingsItem
|
public function getImage(): ?ChannelSettingsItem
|
||||||
{
|
{
|
||||||
@ -186,7 +186,7 @@ class ChannelSettings implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChannelSettingsItem
|
* @return ChannelSettingsItem|null
|
||||||
*/
|
*/
|
||||||
public function getFile(): ?ChannelSettingsItem
|
public function getFile(): ?ChannelSettingsItem
|
||||||
{
|
{
|
||||||
|
@ -101,7 +101,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
private $noteMaxCharsCount;
|
private $noteMaxCharsCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getCreating(): ?string
|
public function getCreating(): ?string
|
||||||
{
|
{
|
||||||
@ -117,7 +117,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getEditing(): ?string
|
public function getEditing(): ?string
|
||||||
{
|
{
|
||||||
@ -133,7 +133,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getQuoting(): ?string
|
public function getQuoting(): ?string
|
||||||
{
|
{
|
||||||
@ -149,7 +149,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getDeleting(): ?string
|
public function getDeleting(): ?string
|
||||||
{
|
{
|
||||||
@ -165,7 +165,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getDelivered(): ?string
|
public function getDelivered(): ?string
|
||||||
{
|
{
|
||||||
@ -181,7 +181,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getMaxCharsCount(): ?int
|
public function getMaxCharsCount(): ?int
|
||||||
{
|
{
|
||||||
@ -197,7 +197,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getMaxItemsCount(): ?int
|
public function getMaxItemsCount(): ?int
|
||||||
{
|
{
|
||||||
@ -213,7 +213,7 @@ class ChannelSettingsItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getNoteMaxCharsCount(): ?int
|
public function getNoteMaxCharsCount(): ?int
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@ class ChannelSettingsStatus implements ModelInterface
|
|||||||
private $read;
|
private $read;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getDelivered(): ?string
|
public function getDelivered(): ?string
|
||||||
{
|
{
|
||||||
@ -63,7 +63,7 @@ class ChannelSettingsStatus implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getRead(): ?string
|
public function getRead(): ?string
|
||||||
{
|
{
|
||||||
|
@ -168,7 +168,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAvatar(): ?string
|
public function getAvatar(): ?string
|
||||||
{
|
{
|
||||||
@ -184,7 +184,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
@ -200,7 +200,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Channel
|
* @return Channel|null
|
||||||
*/
|
*/
|
||||||
public function getChannel(): ?Channel
|
public function getChannel(): ?Channel
|
||||||
{
|
{
|
||||||
@ -216,7 +216,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array|null
|
||||||
*/
|
*/
|
||||||
public function getMembers(): ?array
|
public function getMembers(): ?array
|
||||||
{
|
{
|
||||||
@ -232,7 +232,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Customer
|
* @return Customer|null
|
||||||
*/
|
*/
|
||||||
public function getCustomer(): ?Customer
|
public function getCustomer(): ?Customer
|
||||||
{
|
{
|
||||||
@ -248,7 +248,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getAuthorId(): ?int
|
public function getAuthorId(): ?int
|
||||||
{
|
{
|
||||||
@ -264,7 +264,7 @@ class Chat implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return ChatLastMessage
|
* @return ChatLastMessage|null
|
||||||
*/
|
*/
|
||||||
public function getLastMessage(): ?ChatLastMessage
|
public function getLastMessage(): ?ChatLastMessage
|
||||||
{
|
{
|
||||||
|
@ -88,7 +88,7 @@ class ChatLastMessage implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getType(): ?string
|
public function getType(): ?string
|
||||||
{
|
{
|
||||||
|
@ -138,7 +138,7 @@ class ChatMember implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getChatId(): ?int
|
public function getChatId(): ?int
|
||||||
{
|
{
|
||||||
@ -154,7 +154,7 @@ class ChatMember implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getUserId(): ?int
|
public function getUserId(): ?int
|
||||||
{
|
{
|
||||||
@ -170,7 +170,7 @@ class ChatMember implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isAuthor(): ?bool
|
public function isAuthor(): ?bool
|
||||||
{
|
{
|
||||||
@ -186,7 +186,7 @@ class ChatMember implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getState(): ?string
|
public function getState(): ?string
|
||||||
{
|
{
|
||||||
|
@ -72,7 +72,7 @@ class Command implements ModelInterface
|
|||||||
private $description;
|
private $description;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -120,7 +120,7 @@ class Command implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
@ -136,7 +136,7 @@ class Command implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getDescription(): ?string
|
public function getDescription(): ?string
|
||||||
{
|
{
|
||||||
|
@ -174,7 +174,7 @@ class Customer implements ModelInterface
|
|||||||
private $email;
|
private $email;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -222,7 +222,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getExternalId(): ?string
|
public function getExternalId(): ?string
|
||||||
{
|
{
|
||||||
@ -238,7 +238,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getChannelId(): ?int
|
public function getChannelId(): ?int
|
||||||
{
|
{
|
||||||
@ -254,7 +254,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getUsername(): ?string
|
public function getUsername(): ?string
|
||||||
{
|
{
|
||||||
@ -270,7 +270,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getFirstName(): ?string
|
public function getFirstName(): ?string
|
||||||
{
|
{
|
||||||
@ -286,7 +286,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getLastName(): ?string
|
public function getLastName(): ?string
|
||||||
{
|
{
|
||||||
@ -302,7 +302,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAvatarUrl(): ?string
|
public function getAvatarUrl(): ?string
|
||||||
{
|
{
|
||||||
@ -318,7 +318,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getProfileUrl(): ?string
|
public function getProfileUrl(): ?string
|
||||||
{
|
{
|
||||||
@ -334,7 +334,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getRevokedAt(): ?string
|
public function getRevokedAt(): ?string
|
||||||
{
|
{
|
||||||
@ -350,7 +350,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getCountry(): ?string
|
public function getCountry(): ?string
|
||||||
{
|
{
|
||||||
@ -366,7 +366,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getLanguage(): ?string
|
public function getLanguage(): ?string
|
||||||
{
|
{
|
||||||
@ -382,7 +382,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getPhone(): ?string
|
public function getPhone(): ?string
|
||||||
{
|
{
|
||||||
@ -398,7 +398,7 @@ class Customer implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getEmail(): ?string
|
public function getEmail(): ?string
|
||||||
{
|
{
|
||||||
|
@ -126,7 +126,7 @@ class Dialog implements ModelInterface
|
|||||||
private $isActive;
|
private $isActive;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -174,7 +174,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getBotId(): ?int
|
public function getBotId(): ?int
|
||||||
{
|
{
|
||||||
@ -190,7 +190,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getChatId(): ?int
|
public function getChatId(): ?int
|
||||||
{
|
{
|
||||||
@ -206,7 +206,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getBeginMessageId(): ?int
|
public function getBeginMessageId(): ?int
|
||||||
{
|
{
|
||||||
@ -222,7 +222,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getEndingMessageId(): ?int
|
public function getEndingMessageId(): ?int
|
||||||
{
|
{
|
||||||
@ -254,7 +254,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isAssigned(): ?bool
|
public function isAssigned(): ?bool
|
||||||
{
|
{
|
||||||
@ -270,7 +270,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Responsible
|
* @return Responsible|null
|
||||||
*/
|
*/
|
||||||
public function getResponsible(): ?Responsible
|
public function getResponsible(): ?Responsible
|
||||||
{
|
{
|
||||||
@ -286,7 +286,7 @@ class Dialog implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isActive(): ?bool
|
public function isActive(): ?bool
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@ class FileMeta implements ModelInterface
|
|||||||
private $width;
|
private $width;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getHeight(): ?int
|
public function getHeight(): ?int
|
||||||
{
|
{
|
||||||
@ -63,7 +63,7 @@ class FileMeta implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getWidth(): ?int
|
public function getWidth(): ?int
|
||||||
{
|
{
|
||||||
|
@ -56,7 +56,7 @@ class Item implements ModelInterface
|
|||||||
private $caption;
|
private $caption;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -72,7 +72,7 @@ class Item implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getSize(): ?int
|
public function getSize(): ?int
|
||||||
{
|
{
|
||||||
@ -88,7 +88,7 @@ class Item implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getCaption()
|
public function getCaption()
|
||||||
{
|
{
|
||||||
|
@ -273,7 +273,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array|null
|
||||||
*/
|
*/
|
||||||
public function getItems(): ?array
|
public function getItems(): ?array
|
||||||
{
|
{
|
||||||
@ -289,7 +289,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return User
|
* @return User|null
|
||||||
*/
|
*/
|
||||||
public function getFrom(): ?User
|
public function getFrom(): ?User
|
||||||
{
|
{
|
||||||
@ -321,7 +321,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getType(): ?string
|
public function getType(): ?string
|
||||||
{
|
{
|
||||||
@ -337,7 +337,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getScope(): ?string
|
public function getScope(): ?string
|
||||||
{
|
{
|
||||||
@ -353,7 +353,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getChatId(): ?int
|
public function getChatId(): ?int
|
||||||
{
|
{
|
||||||
@ -369,7 +369,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getContent(): ?string
|
public function getContent(): ?string
|
||||||
{
|
{
|
||||||
@ -385,7 +385,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isRead(): ?bool
|
public function isRead(): ?bool
|
||||||
{
|
{
|
||||||
@ -401,7 +401,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isEdit(): ?bool
|
public function isEdit(): ?bool
|
||||||
{
|
{
|
||||||
@ -417,7 +417,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getStatus(): ?string
|
public function getStatus(): ?string
|
||||||
{
|
{
|
||||||
@ -433,7 +433,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAction(): ?string
|
public function getAction(): ?string
|
||||||
{
|
{
|
||||||
@ -449,7 +449,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Dialog
|
* @return Dialog|null
|
||||||
*/
|
*/
|
||||||
public function getDialog(): ?Dialog
|
public function getDialog(): ?Dialog
|
||||||
{
|
{
|
||||||
@ -465,7 +465,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getChannelId(): ?int
|
public function getChannelId(): ?int
|
||||||
{
|
{
|
||||||
@ -497,7 +497,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageOrder
|
* @return MessageOrder|null
|
||||||
*/
|
*/
|
||||||
public function getOrder(): ?MessageOrder
|
public function getOrder(): ?MessageOrder
|
||||||
{
|
{
|
||||||
@ -513,7 +513,7 @@ class Message implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageProduct
|
* @return MessageProduct|null
|
||||||
*/
|
*/
|
||||||
public function getProduct(): ?MessageProduct
|
public function getProduct(): ?MessageProduct
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ class MessageCost implements ModelInterface
|
|||||||
private $currency;
|
private $currency;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return float
|
* @return float|null
|
||||||
*/
|
*/
|
||||||
public function getValue()
|
public function getValue()
|
||||||
{
|
{
|
||||||
@ -65,7 +65,7 @@ class MessageCost implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getCurrency()
|
public function getCurrency()
|
||||||
{
|
{
|
||||||
|
@ -68,7 +68,7 @@ class MessageDelivery implements ModelInterface
|
|||||||
private $comment;
|
private $comment;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
@ -84,7 +84,7 @@ class MessageDelivery implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageCost
|
* @return MessageCost|null
|
||||||
*/
|
*/
|
||||||
public function getPrice()
|
public function getPrice()
|
||||||
{
|
{
|
||||||
@ -100,7 +100,7 @@ class MessageDelivery implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAddress()
|
public function getAddress()
|
||||||
{
|
{
|
||||||
@ -116,7 +116,7 @@ class MessageDelivery implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getComment()
|
public function getComment()
|
||||||
{
|
{
|
||||||
|
@ -101,7 +101,7 @@ class MessageOrder implements ModelInterface
|
|||||||
private $payments;
|
private $payments;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getNumber()
|
public function getNumber()
|
||||||
{
|
{
|
||||||
@ -117,7 +117,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getUrl()
|
public function getUrl()
|
||||||
{
|
{
|
||||||
@ -133,7 +133,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getDate()
|
public function getDate()
|
||||||
{
|
{
|
||||||
@ -149,7 +149,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageCost
|
* @return MessageCost|null
|
||||||
*/
|
*/
|
||||||
public function getCost()
|
public function getCost()
|
||||||
{
|
{
|
||||||
@ -165,7 +165,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageStatus
|
* @return MessageStatus|null
|
||||||
*/
|
*/
|
||||||
public function getStatus()
|
public function getStatus()
|
||||||
{
|
{
|
||||||
@ -181,7 +181,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageDelivery
|
* @return MessageDelivery|null
|
||||||
*/
|
*/
|
||||||
public function getDelivery()
|
public function getDelivery()
|
||||||
{
|
{
|
||||||
@ -197,7 +197,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array|null
|
||||||
*/
|
*/
|
||||||
public function getItems()
|
public function getItems()
|
||||||
{
|
{
|
||||||
@ -213,7 +213,7 @@ class MessageOrder implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return array
|
* @return array|null
|
||||||
*/
|
*/
|
||||||
public function getPayments()
|
public function getPayments()
|
||||||
{
|
{
|
||||||
|
@ -74,7 +74,7 @@ class MessageOrderItem implements ModelInterface
|
|||||||
private $quantity;
|
private $quantity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
@ -90,7 +90,7 @@ class MessageOrderItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getUrl()
|
public function getUrl()
|
||||||
{
|
{
|
||||||
@ -106,7 +106,7 @@ class MessageOrderItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getImg()
|
public function getImg()
|
||||||
{
|
{
|
||||||
@ -122,7 +122,7 @@ class MessageOrderItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageCost
|
* @return MessageCost|null
|
||||||
*/
|
*/
|
||||||
public function getPrice()
|
public function getPrice()
|
||||||
{
|
{
|
||||||
@ -138,7 +138,7 @@ class MessageOrderItem implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageQuantity
|
* @return MessageQuantity|null
|
||||||
*/
|
*/
|
||||||
public function getQuantity()
|
public function getQuantity()
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@ class MessageOrderPaymentStatus implements ModelInterface
|
|||||||
private $payed;
|
private $payed;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
@ -63,7 +63,7 @@ class MessageOrderPaymentStatus implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function getPayed(): ?bool
|
public function getPayed(): ?bool
|
||||||
{
|
{
|
||||||
|
@ -56,7 +56,7 @@ class MessagePayment implements ModelInterface
|
|||||||
private $amount;
|
private $amount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
@ -72,7 +72,7 @@ class MessagePayment implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageOrderPaymentStatus
|
* @return MessageOrderPaymentStatus|null
|
||||||
*/
|
*/
|
||||||
public function getStatus()
|
public function getStatus()
|
||||||
{
|
{
|
||||||
@ -88,7 +88,7 @@ class MessagePayment implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageCost
|
* @return MessageCost|null
|
||||||
*/
|
*/
|
||||||
public function getAmount()
|
public function getAmount()
|
||||||
{
|
{
|
||||||
|
@ -108,7 +108,7 @@ class MessageProduct implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
@ -124,7 +124,7 @@ class MessageProduct implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getArticle(): ?string
|
public function getArticle(): ?string
|
||||||
{
|
{
|
||||||
@ -140,7 +140,7 @@ class MessageProduct implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getUrl(): ?string
|
public function getUrl(): ?string
|
||||||
{
|
{
|
||||||
@ -156,7 +156,7 @@ class MessageProduct implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getImg(): ?string
|
public function getImg(): ?string
|
||||||
{
|
{
|
||||||
@ -172,7 +172,7 @@ class MessageProduct implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageCost
|
* @return MessageCost|null
|
||||||
*/
|
*/
|
||||||
public function getCost(): ?MessageCost
|
public function getCost(): ?MessageCost
|
||||||
{
|
{
|
||||||
@ -188,7 +188,7 @@ class MessageProduct implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return MessageQuantity
|
* @return MessageQuantity|null
|
||||||
*/
|
*/
|
||||||
public function getQuantity(): ?MessageQuantity
|
public function getQuantity(): ?MessageQuantity
|
||||||
{
|
{
|
||||||
|
@ -49,7 +49,7 @@ class MessageQuantity implements ModelInterface
|
|||||||
private $unit;
|
private $unit;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return float
|
* @return float|null
|
||||||
*/
|
*/
|
||||||
public function getValue()
|
public function getValue()
|
||||||
{
|
{
|
||||||
@ -65,7 +65,7 @@ class MessageQuantity implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getUnit()
|
public function getUnit()
|
||||||
{
|
{
|
||||||
|
@ -47,7 +47,7 @@ class MessageStatus implements ModelInterface
|
|||||||
private $name;
|
private $name;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getCode(): ?string
|
public function getCode(): ?string
|
||||||
{
|
{
|
||||||
@ -63,7 +63,7 @@ class MessageStatus implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
|
@ -56,7 +56,7 @@ class Responsible implements ModelInterface
|
|||||||
private $type;
|
private $type;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAssignedAt(): ?string
|
public function getAssignedAt(): ?string
|
||||||
{
|
{
|
||||||
@ -72,7 +72,7 @@ class Responsible implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return int
|
* @return int|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?int
|
public function getId(): ?int
|
||||||
{
|
{
|
||||||
@ -88,7 +88,7 @@ class Responsible implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getType(): ?string
|
public function getType(): ?string
|
||||||
{
|
{
|
||||||
|
@ -149,7 +149,7 @@ class User implements ModelInterface
|
|||||||
private $revokedAt;
|
private $revokedAt;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getId(): ?string
|
public function getId(): ?string
|
||||||
{
|
{
|
||||||
@ -197,7 +197,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getExternalId(): ?string
|
public function getExternalId(): ?string
|
||||||
{
|
{
|
||||||
@ -213,7 +213,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getType(): ?string
|
public function getType(): ?string
|
||||||
{
|
{
|
||||||
@ -229,7 +229,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getAvatar(): ?string
|
public function getAvatar(): ?string
|
||||||
{
|
{
|
||||||
@ -245,7 +245,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getName(): ?string
|
public function getName(): ?string
|
||||||
{
|
{
|
||||||
@ -261,7 +261,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getUsername(): ?string
|
public function getUsername(): ?string
|
||||||
{
|
{
|
||||||
@ -277,7 +277,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getFirstName(): ?string
|
public function getFirstName(): ?string
|
||||||
{
|
{
|
||||||
@ -293,7 +293,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return string
|
* @return string|null
|
||||||
*/
|
*/
|
||||||
public function getLastName(): ?string
|
public function getLastName(): ?string
|
||||||
{
|
{
|
||||||
@ -309,7 +309,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isActive(): ?bool
|
public function isActive(): ?bool
|
||||||
{
|
{
|
||||||
@ -325,7 +325,7 @@ class User implements ModelInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return bool
|
* @return bool|null
|
||||||
*/
|
*/
|
||||||
public function isOnline(): ?bool
|
public function isOnline(): ?bool
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
|
|
||||||
namespace RetailCrm\Mg\Bot\Model;
|
namespace RetailCrm\Mg\Bot\Model;
|
||||||
|
|
||||||
|
|
||||||
interface ModelInterface
|
interface ModelInterface
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user