@@ -76,7 +76,7 @@ |
||
76 | 76 | |
77 | 77 | // create an empty collection if no plugins has been specified |
78 | 78 | if ($this->plugins === null) { |
79 | - $this->plugins= new ArrayCollection(); |
|
79 | + $this->plugins = new ArrayCollection(); |
|
80 | 80 | } |
81 | 81 | } |
82 | 82 |
@@ -138,7 +138,7 @@ |
||
138 | 138 | } |
139 | 139 | |
140 | 140 | // sort the files ascending |
141 | - usort($files, function ($a, $b) { |
|
141 | + usort($files, function($a, $b) { |
|
142 | 142 | return strcmp($a, $b); |
143 | 143 | }); |
144 | 144 |