Commit ffe45ba1 authored by Fabien Potencier's avatar Fabien Potencier

fixed CS

parent bf5609d9
......@@ -273,6 +273,7 @@ class Application extends \Pimple implements HttpKernelInterface, TerminableInte
{
if ($this->booted) {
$this['dispatcher']->addListener($eventName, $callback, $priority);
return;
}
......
......@@ -34,6 +34,7 @@ class FormServiceProviderTest extends \PHPUnit_Framework_TestCase
$app['form.type.extensions'] = $app->share($app->extend('form.type.extensions', function($extensions) {
$extensions[] = new DummyFormTypeExtension();
return $extensions;
}));
......@@ -52,6 +53,7 @@ class FormServiceProviderTest extends \PHPUnit_Framework_TestCase
$app['form.type.guessers'] = $app->share($app->extend('form.type.guessers', function($guessers) {
$guessers[] = new FormTypeGuesserChain(array());
return $guessers;
}));
......
......@@ -162,4 +162,3 @@ class MonologServiceProviderTest extends \PHPUnit_Framework_TestCase
return $app;
}
}
......@@ -48,6 +48,7 @@ class TranslationServiceProviderTest extends \PHPUnit_Framework_TestCase
)
)
);
return $app;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment