From 1b913dcb49933b6584c585657304205d2651bfc9 Mon Sep 17 00:00:00 2001 From: Cyrill N Kalita Date: Wed, 20 Mar 2024 10:45:22 -0500 Subject: [PATCH] Update namespaces in DiscoverAbilities and RbacException files --- src/DiscoverAbilities.php | 2 +- {tests => src}/Exceptions/RbacException.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {tests => src}/Exceptions/RbacException.php (93%) diff --git a/src/DiscoverAbilities.php b/src/DiscoverAbilities.php index 13d506c..49de1cc 100644 --- a/src/DiscoverAbilities.php +++ b/src/DiscoverAbilities.php @@ -2,7 +2,7 @@ namespace BinaryCats\Rbac; -use BinaryCats\Rbac\Tests\Exceptions\RbacException; +use BinaryCats\Rbac\Exceptions\RbacException; use Illuminate\Support\Collection; use Illuminate\Support\Str; use ReflectionClass; diff --git a/tests/Exceptions/RbacException.php b/src/Exceptions/RbacException.php similarity index 93% rename from tests/Exceptions/RbacException.php rename to src/Exceptions/RbacException.php index fda28cb..21baaeb 100644 --- a/tests/Exceptions/RbacException.php +++ b/src/Exceptions/RbacException.php @@ -1,6 +1,6 @@