Skip to content

Commit

Permalink
Move "Kernel\CompatibilityKernel" to "Internal\CompatibilityTestKernel"
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen committed Aug 30, 2024
1 parent ac8b642 commit 8283a78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Neusta\Pimcore\TestingFramework\Kernel;
namespace Neusta\Pimcore\TestingFramework\Internal;

use Pimcore\Bundle\AdminBundle\PimcoreAdminBundle;
use Pimcore\HttpKernel\BundleCollection\BundleCollection;
Expand All @@ -13,7 +13,7 @@

if (!method_exists(Version::class, 'getMajorVersion') || 10 === Version::getMajorVersion()) {
/** @internal */
abstract class CompatibilityKernel extends Kernel
abstract class CompatibilityTestKernel extends Kernel
{
/**
* @internal
Expand Down Expand Up @@ -55,7 +55,7 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
}
} else {
/** @internal */
abstract class CompatibilityKernel extends Kernel
abstract class CompatibilityTestKernel extends Kernel
{
/**
* @internal
Expand Down
4 changes: 2 additions & 2 deletions src/TestKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

namespace Neusta\Pimcore\TestingFramework;

use Neusta\Pimcore\TestingFramework\Kernel\CompatibilityKernel;
use Neusta\Pimcore\TestingFramework\Internal\CompatibilityTestKernel;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\Compiler\PassConfig;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\HttpKernel\Bundle\BundleInterface;

class TestKernel extends CompatibilityKernel
class TestKernel extends CompatibilityTestKernel
{
private bool $dynamicCache = false;
/** @var list<class-string<BundleInterface>> */
Expand Down

0 comments on commit 8283a78

Please sign in to comment.