Explorar el Código

verify Fixed php-slim's json test

Mike Smith hace 11 años
padre
commit
b6de3c6095
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      php-slim/index.php

+ 1 - 1
php-slim/index.php

@@ -36,7 +36,7 @@ $app = new \Slim\Slim();
 
 $app->get('/json', function () use($app) {
     $app->contentType('application/json');
-    echo json_encode(array('message' => 'Hello World!'));
+    echo json_encode(array('message' => 'Hello, World!'));
 });
 
 $app->get('/db', function () use($app) {