Skip to content

Commit

Permalink
fix type hinting in extiverse client
Browse files Browse the repository at this point in the history
  • Loading branch information
luceos committed Jun 16, 2021
1 parent 2ca894c commit 026f352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Extiverse.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Extiverse\Api\JsonApi\Parser\DocumentParser;
use Extiverse\Api\JsonApi\Repositories\UserRepository;
use Extiverse\Api\JsonApi\Types\TypeMapper;
use Extiverse\Api\Requests\User;
use Extiverse\Api\JsonApi\Types\User\User;
use GuzzleHttp\Client;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Middleware;
Expand All @@ -26,7 +26,7 @@ class Extiverse
protected ?bool $testing = null;
protected ?string $token = null;
protected ?CacheInterface $cache = null;
protected ?Item $me = null;
protected ?User $me = null;

private function __construct()
{
Expand Down

0 comments on commit 026f352

Please sign in to comment.