1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-10 07:06:45 +02:00

feat(flextype): add missed container for flextype instance

This commit is contained in:
Awilum
2021-08-03 18:44:30 +03:00
parent f71b82df91
commit 95e0bc8908

View File

@@ -103,7 +103,7 @@ final class Flextype
public static function getInstance(?ContainerInterface $container = null): Flextype
{
if (static::$instance === null) {
static::$instance = new self();
static::$instance = new self($container);
}
return static::$instance;