From 4806b35c6bf173342592b326d512e909996a9b1f Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 31 Jul 2024 20:54:55 +0000 Subject: [PATCH] Moved CSRFP into the root namespace. --- VERSION | 2 +- src/{Security => }/CSRFP.php | 2 +- tests/CSRFPTest.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename src/{Security => }/CSRFP.php (99%) diff --git a/VERSION b/VERSION index 8f4fcc5..c13e3f8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2407.312052 +0.2407.312054 diff --git a/src/Security/CSRFP.php b/src/CSRFP.php similarity index 99% rename from src/Security/CSRFP.php rename to src/CSRFP.php index 42f6bf9..f624af3 100644 --- a/src/Security/CSRFP.php +++ b/src/CSRFP.php @@ -3,7 +3,7 @@ // Created: 2021-06-11 // Updated: 2024-07-31 -namespace Index\Security; +namespace Index; use Index\UriBase64; diff --git a/tests/CSRFPTest.php b/tests/CSRFPTest.php index 4bb643f..6fdf284 100644 --- a/tests/CSRFPTest.php +++ b/tests/CSRFPTest.php @@ -7,7 +7,7 @@ declare(strict_types=1); use PHPUnit\Framework\TestCase; use PHPUnit\Framework\Attributes\CoversClass; -use Index\Security\CSRFP; +use Index\CSRFP; #[CoversClass(CSRFP::class)] final class CSRFPTest extends TestCase {