@@ -1,4 +1,4 @@ |
||
1 | -<?php declare(strict_types = 1); |
|
1 | +<?php declare(strict_types=1); |
|
2 | 2 | |
3 | 3 | namespace DoctrineMigrations; |
4 | 4 |
@@ -32,7 +32,7 @@ |
||
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 |