Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 09f525e

Browse files
committed
Fixed issue with clyclic dependencies.
Signed-off-by: Joshua Parker <[email protected]>
1 parent 61e9c13 commit 09f525e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Application.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ final class Application extends Container
6969
{
7070
use InvokerAware;
7171

72-
public const APP_VERSION = '2.1.4';
72+
public const APP_VERSION = '2.1.5';
7373

7474
public const MIN_PHP_VERSION = '8.2';
7575

@@ -885,8 +885,7 @@ public function isDevelopment(): bool
885885
*/
886886
public static function configure(array $config): ApplicationBuilder
887887
{
888-
return (new ApplicationBuilder(new self($config)))
889-
->withKernels();
888+
return new ApplicationBuilder(new self($config));
890889
}
891890

892891
/**

0 commit comments

Comments
 (0)