From 524ac36665a515d7e452a5d7afc3f5c260c0a3cf Mon Sep 17 00:00:00 2001 From: Greg Bowler Date: Fri, 17 Apr 2026 11:01:16 +0100 Subject: [PATCH] tidy: Gt->GT --- composer.json | 2 ++ phpcs.xml | 2 +- src/Container.php | 2 +- src/Injector.php | 2 +- src/ServiceContainerException.php | 2 +- src/ServiceNotFoundException.php | 2 +- test/phpunit/ContainerTest.php | 14 +++++++------- test/phpunit/Example/Greeter.php | 2 +- test/phpunit/Example/GreetingInterface.php | 2 +- test/phpunit/Example/UriGreeter.php | 2 +- test/phpunit/InjectorTest.php | 8 ++++---- 11 files changed, 21 insertions(+), 19 deletions(-) diff --git a/composer.json b/composer.json index 6d3263e..58350ac 100644 --- a/composer.json +++ b/composer.json @@ -20,11 +20,13 @@ "autoload": { "psr-4": { + "GT\\ServiceContainer\\": "./src", "Gt\\ServiceContainer\\": "./src" } }, "autoload-dev": { "psr-4": { + "GT\\ServiceContainer\\Test\\": "./test/phpunit", "Gt\\ServiceContainer\\Test\\": "./test/phpunit" } }, diff --git a/phpcs.xml b/phpcs.xml index d3f6fbb..09a0218 100644 --- a/phpcs.xml +++ b/phpcs.xml @@ -1,5 +1,5 @@ - + Created from PHP.GT/Styleguide diff --git a/src/Container.php b/src/Container.php index 77540c5..2484f4b 100644 --- a/src/Container.php +++ b/src/Container.php @@ -1,5 +1,5 @@