Replace spaces with tabs
This commit is contained in:
parent
0de372aceb
commit
90dc60cee7
1 changed files with 22 additions and 22 deletions
|
@ -37,57 +37,57 @@ class Status extends BaseEntity
|
||||||
/** @var string (Datetime) */
|
/** @var string (Datetime) */
|
||||||
protected $created_at;
|
protected $created_at;
|
||||||
/** @var string|null */
|
/** @var string|null */
|
||||||
protected $in_reply_to_id = null;
|
protected $in_reply_to_id = null;
|
||||||
/** @var string|null */
|
/** @var string|null */
|
||||||
protected $in_reply_to_account_id = null;
|
protected $in_reply_to_account_id = null;
|
||||||
/** @var bool */
|
/** @var bool */
|
||||||
protected $sensitive = false;
|
protected $sensitive = false;
|
||||||
/** @var string */
|
/** @var string */
|
||||||
protected $spoiler_text = "";
|
protected $spoiler_text = "";
|
||||||
/** @var string (Enum of public, unlisted, private, direct)*/
|
/** @var string (Enum of public, unlisted, private, direct)*/
|
||||||
protected $visibility;
|
protected $visibility;
|
||||||
/** @var string|null */
|
/** @var string|null */
|
||||||
protected $language = null;
|
protected $language = null;
|
||||||
/** @var string */
|
/** @var string */
|
||||||
protected $uri;
|
protected $uri;
|
||||||
/** @var string|null (URL)*/
|
/** @var string|null (URL)*/
|
||||||
protected $url = null;
|
protected $url = null;
|
||||||
/** @var int */
|
/** @var int */
|
||||||
protected $replies_count = 0;
|
protected $replies_count = 0;
|
||||||
/** @var int */
|
/** @var int */
|
||||||
protected $reblogs_count = 0;
|
protected $reblogs_count = 0;
|
||||||
/** @var int */
|
/** @var int */
|
||||||
protected $favourites_count = 0;
|
protected $favourites_count = 0;
|
||||||
/** @var bool */
|
/** @var bool */
|
||||||
protected $favourited = false;
|
protected $favourited = false;
|
||||||
/** @var bool */
|
/** @var bool */
|
||||||
protected $reblogged = false;
|
protected $reblogged = false;
|
||||||
/** @var bool */
|
/** @var bool */
|
||||||
protected $muted = false;
|
protected $muted = false;
|
||||||
/** @var bool */
|
/** @var bool */
|
||||||
protected $bookmarked = false;
|
protected $bookmarked = false;
|
||||||
/** @var bool */
|
/** @var bool */
|
||||||
protected $pinned = false;
|
protected $pinned = false;
|
||||||
/** @var string */
|
/** @var string */
|
||||||
protected $content;
|
protected $content;
|
||||||
/** @var Status|null */
|
/** @var Status|null */
|
||||||
protected $reblog = null;
|
protected $reblog = null;
|
||||||
/** @var Application */
|
/** @var Application */
|
||||||
protected $application = null;
|
protected $application = null;
|
||||||
/** @var Account */
|
/** @var Account */
|
||||||
protected $account;
|
protected $account;
|
||||||
/** @var Attachment */
|
/** @var Attachment */
|
||||||
protected $media_attachments = [];
|
protected $media_attachments = [];
|
||||||
/** @var Mention */
|
/** @var Mention */
|
||||||
protected $mentions = [];
|
protected $mentions = [];
|
||||||
/** @var Tag */
|
/** @var Tag */
|
||||||
protected $tags = [];
|
protected $tags = [];
|
||||||
/** @var Emoji[] */
|
/** @var Emoji[] */
|
||||||
protected $emojis = [];
|
protected $emojis = [];
|
||||||
/** @var Card|null */
|
/** @var Card|null */
|
||||||
protected $card = null;
|
protected $card = null;
|
||||||
/** @var Poll|null */
|
/** @var Poll|null */
|
||||||
protected $poll = null;
|
protected $poll = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a status record from an item record.
|
* Creates a status record from an item record.
|
||||||
|
|
Loading…
Reference in a new issue