Ver Fonte

verify Fixed php-silex-orm's json test

Mike Smith há 11 anos atrás
pai
commit
eba6a47d38
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      php-silex-orm/web/index.php

+ 1 - 1
php-silex-orm/web/index.php

@@ -40,7 +40,7 @@ $app->register(new DoctrineOrmServiceProvider, array(
 ));
 
 $app->get('/json', function() {
-    return new JsonResponse(array('message' => 'Hello World!'));
+    return new JsonResponse(array('message' => 'Hello, World!'));
 });
 
 $app->get('/db', function(Request $request) use ($app) {