diff --git a/src/Object/Api/Mastodon/Token.php b/src/Object/Api/Mastodon/Token.php index 8bcb837ec..0924e8bb2 100644 --- a/src/Object/Api/Mastodon/Token.php +++ b/src/Object/Api/Mastodon/Token.php @@ -37,7 +37,7 @@ class Token extends BaseDataTransferObject protected $token_type; /** @var string */ protected $scope; - /** @var string (Datetime) */ + /** @var int (timestamp) */ protected $created_at; /** @@ -53,6 +53,6 @@ class Token extends BaseDataTransferObject $this->access_token = $access_token; $this->token_type = $token_type; $this->scope = $scope; - $this->created_at = DateTimeFormat::utc($created_at, DateTimeFormat::JSON); + $this->created_at = strtotime($created_at); } }