diff --git a/src/Object/Api/Mastodon/InstanceV2/UserStats.php b/src/Object/Api/Mastodon/InstanceV2/UserStats.php index 8f398e0d5..afe6048e5 100644 --- a/src/Object/Api/Mastodon/InstanceV2/UserStats.php +++ b/src/Object/Api/Mastodon/InstanceV2/UserStats.php @@ -31,13 +31,13 @@ use Friendica\BaseDataTransferObject; class UserStats extends BaseDataTransferObject { /** @var int */ - protected $active_monthly = 0; + protected $active_month = 0; /** - * @param $active_monthly + * @param int $active_month */ - public function __construct($active_monthly) + public function __construct(int $active_month) { - $this->active_monthly = $active_monthly; + $this->active_month = $active_month; } }