Test Failed
Push — develop ( aad200...149858 )
by nguereza
03:52 queued 53s
created
src/Demo/Action/User/BatchAction.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,9 +181,9 @@
 block discarded – undo
181 181
         $this->logger->info('Deleted of users #{items}', ['items' => $items]);
182 182
 
183 183
         $this->userRepository->query()
184
-                             ->where('id')
184
+                                ->where('id')
185 185
                                 ->in($items)
186
-                             ->delete();
186
+                                ->delete();
187 187
 
188 188
         $this->flash->setSuccess($this->lang->tr('The selected users are deleted successfully'));
189 189
     }
Please login to merge, or discard this patch.
src/Helper/Flash.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@  discard block
 block discarded – undo
53 53
  * @class Flash
54 54
  * @package Platine\Framework\Helper
55 55
  */
56
-class Flash
57
-{
56
+class Flash {
58 57
 
59 58
     /**
60 59
      * The session instance
@@ -66,8 +65,7 @@  discard block
 block discarded – undo
66 65
      * Create new instance
67 66
      * @param Session $session
68 67
      */
69
-    public function __construct(Session $session)
70
-    {
68
+    public function __construct(Session $session) {
71 69
         $this->session = $session;
72 70
     }
73 71
 
Please login to merge, or discard this patch.