@@ -13,7 +13,7 @@ |
||
13 | 13 | { |
14 | 14 | return array_reduce( |
15 | 15 | $this->validDataTypes(), |
16 | - function ($carry, $supportedType) use ($dataType) { |
|
16 | + function($carry, $supportedType) use ($dataType) { |
|
17 | 17 | return |
18 | 18 | $carry || |
19 | 19 | ($dataType->getName() == $supportedType->getName()) || |
@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | $flattenedRendererList = array_reduce( |
44 | 44 | $this->rendererList, |
45 | - function ($carry, $item) { |
|
45 | + function($carry, $item) { |
|
46 | 46 | return array_merge($carry, $item); |
47 | 47 | }, |
48 | 48 | [] |