Completed
Push — master ( 2e0eb3...b2b032 )
by Pavel
07:23 queued 02:50
created
src/AppBundle/Form/UserType.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
                             'class' => 'form-control',
39 39
                         ]
40 40
                     ],
41
-                    'first_options'  => ['label' => 'Password'],
42
-                    'second_options' => ['label' => 'Repeat Password'],
41
+                    'first_options'  => [ 'label' => 'Password' ],
42
+                    'second_options' => [ 'label' => 'Repeat Password' ],
43 43
                 ]
44 44
             );
45 45
     }
Please login to merge, or discard this patch.
src/AppBundle/Entity/User.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
      */
267 267
     public function getRoles()
268 268
     {
269
-        return [$this->role];
269
+        return [ $this->role ];
270 270
 
271 271
     }
272 272
 
@@ -320,7 +320,7 @@  discard block
 block discarded – undo
320 320
      */
321 321
     public function isAccountNonLocked()
322 322
     {
323
-        return $this->isLocked ? false : true ;
323
+        return $this->isLocked ? false : true;
324 324
     }
325 325
 
326 326
     /**
Please login to merge, or discard this patch.