Test Failed
Push — develop ( c753fd...f013d6 )
by nguereza
02:45
created
src/Demo/Action/Role/BatchAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
     {
138 138
         $param = new RequestData($request);
139 139
 
140
-        $items =  $param->post('items', []);
140
+        $items = $param->post('items', []);
141 141
         if (empty($items)) {
142 142
             return new RedirectResponse(
143 143
                 $this->routeHelper->generateUrl('role_list')
Please login to merge, or discard this patch.
src/Demo/Provider/RoleServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
      */
80 80
     public function addRoutes(Router $router): void
81 81
     {
82
-        $router->group('/roles', function (Router $router) {
82
+        $router->group('/roles', function(Router $router) {
83 83
             $router->get('', ListAction::class, 'role_list');
84 84
             $router->get('/detail/{id:i}', DetailAction::class, 'role_detail');
85 85
             $router->post('/batch', BatchAction::class, 'role_batch');
Please login to merge, or discard this patch.