fix outdated namespaces

This commit is contained in:
Daniel Seifert 2024-12-25 22:48:31 +01:00
parent 871c8bc015
commit d3af1b7054
Signed by: DanielS
GPG Key ID: 6A513E13AEE66170
3 changed files with 8 additions and 5 deletions

View File

@ -38,7 +38,7 @@
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"test": "./vendor/bin/phpunit --no-coverage",
"check-style": "./vendor/bin/php-cs-fixer fix --verbose --dry-run",
"fix-style": "./vendor/bin/php-cs-fixer fix --verbose",
"check-code": "./vendor/bin/phpstan analyse -c phpstan.neon --no-progress --ansi"

View File

@ -15,7 +15,7 @@
declare(strict_types=1);
namespace D3\OxidGuzzleFactory\tests;
namespace D3\GuzzleFactory\tests;
use PHPUnit\Framework\TestCase;
use ReflectionClass;

View File

@ -15,16 +15,19 @@
declare(strict_types=1);
namespace D3\OxidGuzzleFactory\tests;
namespace D3\GuzzleFactory\tests;
use D3\OxidGuzzleFactory\GuzzleFactory;
use D3\GuzzleFactory\GuzzleFactory;
/**
* @coversNothing
*/
class GuzzleFactoryTest extends ApiTestCase
{
/**
* @test
* @return void
* @covers \D3\OxidGuzzleFactory\GuzzleFactory::create
* @covers \D3\GuzzleFactory\GuzzleFactory::create
*/
public function testCreate(): void
{