Coding standards

This commit is contained in:
Romain Neutron
2012-01-26 16:26:31 +01:00
7 changed files with 251 additions and 119 deletions

View File

@@ -51,7 +51,7 @@ class PathFileTest implements ControllerProviderInterface
, 'json'
)
, 200
, array('application/json')
, array('content-type' => 'application/json')
);
});
@@ -59,6 +59,8 @@ class PathFileTest implements ControllerProviderInterface
{
$url = $app['request']->get('url');
$Serializer = $app['Core']['Serializer'];
return new Response(
$Serializer->serialize(
array(
@@ -67,7 +69,7 @@ class PathFileTest implements ControllerProviderInterface
, 'json'
)
, 200
, array('application/json')
, array('content-type' => 'application/json')
);
});