@@ -23,8 +23,8 @@ |
||
23 | 23 | |
24 | 24 | use _generated\LogSharedTesterActions; |
25 | 25 | |
26 | - /** |
|
27 | - * Define custom actions here |
|
28 | - */ |
|
26 | + /** |
|
27 | + * Define custom actions here |
|
28 | + */ |
|
29 | 29 | |
30 | 30 | } |
@@ -23,8 +23,8 @@ |
||
23 | 23 | |
24 | 24 | use _generated\UtilSanitizeServiceTesterActions; |
25 | 25 | |
26 | - /** |
|
27 | - * Define custom actions here |
|
28 | - */ |
|
26 | + /** |
|
27 | + * Define custom actions here |
|
28 | + */ |
|
29 | 29 | |
30 | 30 | } |
@@ -43,7 +43,7 @@ |
||
43 | 43 | */ |
44 | 44 | public function providePersistenceLayerDependencies(Container $container) |
45 | 45 | { |
46 | - $container[self::CATEGORY_QUERY_CONTAINER] = function (Container $container) { |
|
46 | + $container[self::CATEGORY_QUERY_CONTAINER] = function(Container $container) { |
|
47 | 47 | $categoryQueryContainer = $container->getLocator() |
48 | 48 | ->category() |
49 | 49 | ->queryContainer(); |
@@ -23,8 +23,8 @@ |
||
23 | 23 | |
24 | 24 | use _generated\CategoryDataFeedPersistenceTesterActions; |
25 | 25 | |
26 | - /** |
|
27 | - * Define custom actions here |
|
28 | - */ |
|
26 | + /** |
|
27 | + * Define custom actions here |
|
28 | + */ |
|
29 | 29 | |
30 | 30 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | protected function getFunction() |
27 | 27 | { |
28 | - return function ($title, $content, array $options = null, $footer = null) { |
|
28 | + return function($title, $content, array $options = null, $footer = null) { |
|
29 | 29 | $defaultOptions = [ |
30 | 30 | 'class' => 'default', |
31 | 31 | 'id' => false, |
@@ -17,7 +17,7 @@ |
||
17 | 17 | */ |
18 | 18 | protected function getFunction() |
19 | 19 | { |
20 | - return function ($buttons, $title, $options = []) { |
|
20 | + return function($buttons, $title, $options = []) { |
|
21 | 21 | if (!array_key_exists(ButtonGroupUrlGenerator::ICON, $options)) { |
22 | 22 | $options[ButtonGroupUrlGenerator::ICON] = $this->getDefaultIcon(); |
23 | 23 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | */ |
30 | 30 | protected function getFunction() |
31 | 31 | { |
32 | - return function ($url, $title, $options = []) { |
|
32 | + return function($url, $title, $options = []) { |
|
33 | 33 | if (!array_key_exists(ButtonUrlGenerator::ICON, $options)) { |
34 | 34 | $options[ButtonUrlGenerator::ICON] = $this->getIcon(); |
35 | 35 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | */ |
26 | 26 | protected function getFunction() |
27 | 27 | { |
28 | - return function ($title, $content, $footer = null, $extraData = null) { |
|
28 | + return function($title, $content, $footer = null, $extraData = null) { |
|
29 | 29 | $extras = ''; |
30 | 30 | if (is_array($extraData)) { |
31 | 31 | foreach ($extraData as $key => $value) { |
@@ -26,7 +26,7 @@ |
||
26 | 26 | */ |
27 | 27 | protected function getFunction() |
28 | 28 | { |
29 | - return function ($url, array $query = [], array $options = []) { |
|
29 | + return function($url, array $query = [], array $options = []) { |
|
30 | 30 | $url = Url::generate($url, $query, $options); |
31 | 31 | $html = $url->buildEscaped(); |
32 | 32 |