Issue 12530: Align the instance endpoint to the latest changes
This commit is contained in:
@@ -32,12 +32,20 @@ class StatusesConfig extends BaseDataTransferObject
|
||||
{
|
||||
/** @var int */
|
||||
protected $max_characters = 0;
|
||||
/** @var int */
|
||||
protected $max_media_attachments = 0;
|
||||
/** @var int */
|
||||
protected $characters_reserved_per_url = 0;
|
||||
|
||||
/**
|
||||
* @param int $max_characters
|
||||
* @param int $max_media_attachments
|
||||
* @param int $characters_reserved_per_url
|
||||
*/
|
||||
public function __construct(int $max_characters)
|
||||
public function __construct(int $max_characters, int $max_media_attachments, int $characters_reserved_per_url)
|
||||
{
|
||||
$this->max_characters = $max_characters;
|
||||
$this->max_characters = $max_characters;
|
||||
$this->max_media_attachments = $max_media_attachments;
|
||||
$this->characters_reserved_per_url = $characters_reserved_per_url;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user