Release 2.40.0 (#5621)

This commit is contained in:
Kevin Papst
2025-09-26 10:49:06 +02:00
committed by GitHub
parent 6d78c6ba36
commit 7937fa281a
54 changed files with 531 additions and 399 deletions

View File

@@ -33,7 +33,9 @@ class BundleInstallerCommandTest extends KernelTestCase
{
$kernel = self::bootKernel();
$this->application = new Application($kernel);
$this->application->add(new $className());
$command = new $className();
self::assertInstanceOf(AbstractBundleInstallerCommand::class, $command);
$this->application->add($command);
return $this->application->find('kimai:bundle:test:install');
}