Completed
Push — master ( 0229c3...816af4 )
by Martijn
01:37
created
tests/output/docblock comment in method/source.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@
 block discarded – undo
16 16
 	public function Dummy()
17 17
 	{
18 18
 		/**
19
-	* @rest\endpoint /v1/users/{id}
20
-	* @rest\method GET Return a JSON with all the user attributes
21
-	* @rest\path Int id The ID of the User
22
-	* @rest\response 200 User
19
+		 * @rest\endpoint /v1/users/{id}
20
+		 * @rest\method GET Return a JSON with all the user attributes
21
+		 * @rest\path Int id The ID of the User
22
+		 * @rest\response 200 User
23 23
 		 */
24 24
 		$app->get('/v1/users/{id:[0-9]+}', function ($request, $response, $args) {
25 25
 			// ...
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 	* @rest\path Int id The ID of the User
22 22
 	* @rest\response 200 User
23 23
 		 */
24
-		$app->get('/v1/users/{id:[0-9]+}', function ($request, $response, $args) {
24
+		$app->get('/v1/users/{id:[0-9]+}', function($request, $response, $args) {
25 25
 			// ...
26 26
 		});
27 27
 	}
Please login to merge, or discard this patch.