Completed
Push — master ( c86654...b5237d )
by Thomas
02:39
created
src/Operator/OperatorPool.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
  * Copyright © 2018 Uniwax, All rights reserved.
4 4
  * See LICENSE bundled with this library for license details.
5 5
  */
6
-declare(strict_types=1);
6
+declare(strict_types = 1);
7 7
 
8 8
 namespace LogicTree\Operator;
9 9
 
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
      */
133 133
     private function retrieveDefaultOperators(): array
134 134
     {
135
-        return array_map(function ($operators) {
136
-            return array_map(function ($operator) {
135
+        return array_map(function($operators) {
136
+            return array_map(function($operator) {
137 137
                 return new $operator();
138 138
             }, $operators);
139 139
         }, $this->defaultOperators);
Please login to merge, or discard this patch.