@@ -24,7 +24,7 @@ |
||
24 | 24 | */ |
25 | 25 | protected function getFunction() |
26 | 26 | { |
27 | - return function ($title, $content, $footer = null, $extraData = null) { |
|
27 | + return function($title, $content, $footer = null, $extraData = null) { |
|
28 | 28 | $extras = ''; |
29 | 29 | if (is_array($extraData)) { |
30 | 30 | foreach ($extraData as $key => $value) { |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | protected function getFunction() |
27 | 27 | { |
28 | - return function ($url, array $query = [], array $options = []) { |
|
28 | + return function($url, array $query = [], array $options = []) { |
|
29 | 29 | $url = Url::generate($url, $query, $options); |
30 | 30 | $html = $url->buildEscaped(); |
31 | 31 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | public function provideServiceLayerDependencies(Container $container) |
23 | 23 | { |
24 | - $container[self::SERVICE_ZED] = function (Container $container) { |
|
24 | + $container[self::SERVICE_ZED] = function(Container $container) { |
|
25 | 25 | return $container->getLocator()->zedRequest()->client(); |
26 | 26 | }; |
27 | 27 |
@@ -63,7 +63,7 @@ |
||
63 | 63 | |
64 | 64 | $response = $this->getFacade()->drawProcess($processName, $highlightState, $format, $fontSize); |
65 | 65 | |
66 | - $callback = function () use ($response) { |
|
66 | + $callback = function() use ($response) { |
|
67 | 67 | echo $response; |
68 | 68 | }; |
69 | 69 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | public function provideServiceLayerDependencies(Container $container) |
23 | 23 | { |
24 | - $container[self::SERVICE_ZED] = function (Container $container) { |
|
24 | + $container[self::SERVICE_ZED] = function(Container $container) { |
|
25 | 25 | return $container->getLocator()->zedRequest()->client(); |
26 | 26 | }; |
27 | 27 |
@@ -43,7 +43,7 @@ |
||
43 | 43 | */ |
44 | 44 | protected function mergeSettings(array $defaultSettingsArray, array $settingsArray) |
45 | 45 | { |
46 | - $settingsArray = array_filter($settingsArray, function ($value) { |
|
46 | + $settingsArray = array_filter($settingsArray, function($value) { |
|
47 | 47 | return ($value !== null); |
48 | 48 | }); |
49 | 49 | $settingsArray += $defaultSettingsArray; |
@@ -22,11 +22,11 @@ |
||
22 | 22 | */ |
23 | 23 | public function provideServiceLayerDependencies(Container $container) |
24 | 24 | { |
25 | - $container[self::SESSION] = function (Container $container) { |
|
25 | + $container[self::SESSION] = function(Container $container) { |
|
26 | 26 | return $container->getLocator()->session()->client(); |
27 | 27 | }; |
28 | 28 | |
29 | - $container[self::SERVICE_ZED] = function (Container $container) { |
|
29 | + $container[self::SERVICE_ZED] = function(Container $container) { |
|
30 | 30 | return $container->getLocator()->zedRequest()->client(); |
31 | 31 | }; |
32 | 32 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | public function provideCommunicationLayerDependencies(Container $container) |
23 | 23 | { |
24 | - $container[self::FACADE_DISCOUNT] = function (Container $container) { |
|
24 | + $container[self::FACADE_DISCOUNT] = function(Container $container) { |
|
25 | 25 | return new DiscountCalculationToDiscountBridge($container->getLocator()->discount()->facade()); |
26 | 26 | }; |
27 | 27 |
@@ -23,7 +23,7 @@ |
||
23 | 23 | */ |
24 | 24 | public function register(Application $app) |
25 | 25 | { |
26 | - $app[self::ASSERTION] = function () { |
|
26 | + $app[self::ASSERTION] = function() { |
|
27 | 27 | return new AssertionFacade(); |
28 | 28 | }; |
29 | 29 | } |