Skip to content

Commit

Permalink
Fixed CS issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
waltertamboer committed Apr 27, 2016
1 parent d31eeb7 commit 9f210c4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/Service/EngineFactory.php
Expand Up @@ -61,8 +61,12 @@ private function loadTests(EngineInterface $engine, ServiceLocatorInterface $ser
}
}

private function loadTest(ServiceLocatorInterface $serviceLocator, EngineInterface $engine, $identifier, array $config)
{
private function loadTest(
ServiceLocatorInterface $serviceLocator,
EngineInterface $engine,
$identifier,
array $config
) {
$filter = null;
if (array_key_exists('filter', $config)) {
$filter = $serviceLocator->get($config['filter']);
Expand All @@ -86,7 +90,6 @@ private function loadTestVariants(ServiceLocatorInterface $serviceLocator, $conf
$variants = [];

foreach ($config['variants'] as $identifier => $variant) {

// We also support shortcuts so that the user can specify a service name straight away.
if (is_string($variant)) {
$variant = [
Expand Down

0 comments on commit 9f210c4

Please sign in to comment.