From 08311226e1f1759c04bb92071dd176e4f3dc1d4c Mon Sep 17 00:00:00 2001 From: Anton Komarev Date: Sun, 20 Feb 2022 20:06:57 +0500 Subject: [PATCH] Fix exceptions namespace --- .../Exceptions/GitHubProfileViewsCounterThrowableInterface.php | 2 +- contracts/Exceptions/InvalidPathException.php | 2 +- src/CounterFileRepository.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;