Skip to content

Commit 9f2962e

Browse files
authored
fix cs (#6)
1 parent c19debe commit 9f2962e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

config/module.config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
],
5050

5151
'factories' => [
52-
'zf_symfony_container' => SymfonyContainerFactory::class,
52+
'zf_symfony_container' => SymfonyContainerFactory::class,
5353
'zf_symfony_container_config' => SymfonyContainerConfigFactory::class,
5454
]
5555

src/Service/Factory/SymfonyContainerAbstractFactory.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Adlogix\ZfSymfonyContainer\Service\Factory;
1313

14-
1514
use Symfony\Component\DependencyInjection\ContainerInterface;
1615
use Zend\ServiceManager\AbstractFactoryInterface;
1716
use Zend\ServiceManager\ServiceLocatorInterface;
@@ -42,4 +41,4 @@ public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $
4241

4342
return $sfContainer->get($requestedName);
4443
}
45-
}
44+
}

tests/Service/Factory/SymfonyContainerAbstractFactoryTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Adlogix\ZfSymfonyContainer\Test\Service\Factory;
1313

14-
1514
use Adlogix\ZfSymfonyContainer\Test\Fixtures\DummyTwo;
1615
use Adlogix\ZfSymfonyContainer\Test\Util\ServiceManagerFactory;
1716
use PHPUnit\Framework\TestCase;
@@ -28,4 +27,4 @@ public function getService_directlyThroughServiceLocator_shouldReturnInstance()
2827

2928
$this->assertInstanceOf(DummyTwo::class, $dummyTwo);
3029
}
31-
}
30+
}

0 commit comments

Comments
 (0)