Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
  • Loading branch information
samsonasik committed Nov 3, 2024
1 parent 08f01b8 commit b0c2bf5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

declare(strict_types=1);

use mezziotest\authentication\session\testasset\inmemorycontainer;
use MezzioTest\Authentication\Session\TestAsset\InMemoryContainerPSR11V1;
use MezzioTest\Authentication\Session\TestAsset\InMemoryContainerPSR11V2;
use Psr\Container\ContainerInterface;
Expand All @@ -13,7 +12,7 @@
$id = array_shift($params);
// phpcs:disable WebimpressCodingStandard.Formatting.StringClassReference.Found
$id->hasType()
? class_alias(InMemoryContainerPSR11V2::class, inmemorycontainer::class)
: class_alias(InMemoryContainerPSR11V1::class, inmemorycontainer::class);
? class_alias(InMemoryContainerPSR11V2::class, 'MezzioTest\Authentication\Session\TestAsset\InMemoryContainer')
: class_alias(InMemoryContainerPSR11V1::class, 'MezzioTest\Authentication\Session\TestAsset\InMemoryContainer');
// phpcs:enable WebimpressCodingStandard.Formatting.StringClassReference.Found
})();

0 comments on commit b0c2bf5

Please sign in to comment.