Completed
Push — master ( d38b33...d045d3 )
by Vincenzo
02:36
created
Lib/Slime/Console/Commands/CreateRouteCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     protected function getStub()
22 22
     {
23 23
         return PHP_EOL .
24
-        '$api->get(\'/'.$this->getArg(0).'\', function ($request, $response, $args) {
24
+        '$api->get(\'/' . $this->getArg(0) . '\', function ($request, $response, $args) {
25 25
             return (
26 26
                 new SOMEACTION(
27 27
                     $request,
Please login to merge, or discard this patch.
routes/users/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 use App\Actions\User\UserGetAll;
3 3
 
4 4
 
5
-$api->get('/users', function ($request, $response, $args) {
5
+$api->get('/users', function($request, $response, $args) {
6 6
     return (
7 7
     new UserGetAll(
8 8
         $request,
Please login to merge, or discard this patch.
routes/ping/routes.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 use App\Actions\Ping\PingGet;
3 3
 
4
-$api->get('/ping', function ($request, $response, $args) {
4
+$api->get('/ping', function($request, $response, $args) {
5 5
     return (
6 6
     new PingGet(
7 7
         $request,
Please login to merge, or discard this patch.