Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-mykhailenko committed Jul 29, 2024
1 parent a97aad1 commit 4f897f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Model/Tag/TagLimitResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

namespace Mailgun\Model\Tag;

use JetBrains\PhpStorm\ArrayShape;
use Mailgun\Model\ApiResponse;

final class TagLimitResponse implements ApiResponse
Expand Down Expand Up @@ -88,7 +87,7 @@ public function setCount(int $count): void
/**
* @return array
*/
#[ArrayShape(['id' => "string", 'limit' => "int", 'count' => "int"])] public function toArray(): array
public function toArray(): array
{
return [
'id' => $this->getId(),
Expand Down

0 comments on commit 4f897f3

Please sign in to comment.