Completed
Branch SF4 (cbb2b6)
by Laurent
03:00
created
src/Migrations/Version20180429170836.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types = 1);
1
+<?php declare(strict_types=1);
2 2
 
3 3
 namespace DoctrineMigrations;
4 4
 
Please login to merge, or discard this patch.
src/Controller/UserController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
         // transform the role hierarchy in a single unique list
34 34
         $roles = array();
35
-        array_walk_recursive($hierarchy, function ($role) use (&$roles) {
35
+        array_walk_recursive($hierarchy, function($role) use (&$roles) {
36 36
             $roles[$role] = $role;
37 37
         });
38 38
 
Please login to merge, or discard this patch.
src/Entity/Contact.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,6 +319,6 @@
 block discarded – undo
319 319
      */
320 320
     public function getCompleteAddress()
321 321
     {
322
-        return $this->address . '<br>' . $this->zipcode . ' ' . $this->town;
322
+        return $this->address.'<br>'.$this->zipcode.' '.$this->town;
323 323
     }
324 324
 }
Please login to merge, or discard this patch.