Commit 850939d3 authored by Fabien Potencier's avatar Fabien Potencier

fixed CS

parent 722983ad
......@@ -30,8 +30,8 @@ class ConverterListener implements EventSubscriberInterface
/**
* Constructor.
*
* @param RouteCollection $routes A RouteCollection instance
* @param CallbackResolver $callbackResolver A CallbackResolver instance
* @param RouteCollection $routes A RouteCollection instance
* @param CallbackResolver $callbackResolver A CallbackResolver instance
*/
public function __construct(RouteCollection $routes, CallbackResolver $callbackResolver)
{
......
......@@ -28,7 +28,7 @@ class ServiceControllerResolver implements ControllerResolverInterface
* Constructor.
*
* @param ControllerResolverInterface $controllerResolver A ControllerResolverInterface instance to delegate to
* @param CallbackResolver $callbackResolver A service resolver instance
* @param CallbackResolver $callbackResolver A service resolver instance
*/
public function __construct(ControllerResolverInterface $controllerResolver, CallbackResolver $callbackResolver)
{
......
......@@ -152,8 +152,8 @@ class ApplicationTest extends \PHPUnit_Framework_TestCase
}
/**
* @dataProvider escapeProvider
*/
* @dataProvider escapeProvider
*/
public function testEscape($expected, $text)
{
$app = new Application();
......
......@@ -31,8 +31,8 @@ class ControllerTest extends \PHPUnit_Framework_TestCase
}
/**
* @expectedException Silex\Exception\ControllerFrozenException
*/
* @expectedException Silex\Exception\ControllerFrozenException
*/
public function testBindOnFrozenControllerShouldThrowException()
{
$controller = new Controller(new Route('/foo'));
......
......@@ -95,8 +95,8 @@ class RouterTest extends \PHPUnit_Framework_TestCase
}
/**
* @expectedException \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
* @expectedException \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
public function testMissingRoute()
{
$app = new Application();
......
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