diff --git a/contracts/Exceptions/GitHubProfileViewsCounterThrowableInterface.php b/contracts/Exceptions/GitHubProfileViewsCounterThrowableInterface.php index 2b71f90..763916e 100644 --- a/contracts/Exceptions/GitHubProfileViewsCounterThrowableInterface.php +++ b/contracts/Exceptions/GitHubProfileViewsCounterThrowableInterface.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Contracts\Komarev\GitHubProfileViewsCounter; +namespace Contracts\Komarev\GitHubProfileViewsCounter\Exceptions; use Throwable; diff --git a/contracts/Exceptions/InvalidPathException.php b/contracts/Exceptions/InvalidPathException.php index 6c26a30..91706bf 100644 --- a/contracts/Exceptions/InvalidPathException.php +++ b/contracts/Exceptions/InvalidPathException.php @@ -11,7 +11,7 @@ declare(strict_types=1); -namespace Contracts\Komarev\GitHubProfileViewsCounter; +namespace Contracts\Komarev\GitHubProfileViewsCounter\Exceptions; use InvalidArgumentException; diff --git a/src/CounterFileRepository.php b/src/CounterFileRepository.php index e4c2016..c634a2b 100644 --- a/src/CounterFileRepository.php +++ b/src/CounterFileRepository.php @@ -14,7 +14,7 @@ declare(strict_types=1); namespace Komarev\GitHubProfileViewsCounter; use Contracts\Komarev\GitHubProfileViewsCounter\CounterRepositoryInterface; -use Contracts\Komarev\GitHubProfileViewsCounter\InvalidPathException; +use Contracts\Komarev\GitHubProfileViewsCounter\Exceptions\InvalidPathException; use DateTimeImmutable; use DateTimeZone;