Failed Conditions
Push — master ( 494e02...0ec8a9 )
by mark
68:47 queued 24:21
created
src/Spryker/Zed/CmsBlockStorage/CmsBlockStorageDependencyProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     protected function addUtilSanitizeService(Container $container): Container
58 58
     {
59
-        $container->set(static::SERVICE_UTIL_SANITIZE, function (Container $container) {
59
+        $container->set(static::SERVICE_UTIL_SANITIZE, function(Container $container) {
60 60
             return new CmsBlockStorageToUtilSanitizeServiceBridge($container->getLocator()->utilSanitize()->service());
61 61
         });
62 62
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     protected function addEventBehaviorFacade(Container $container): Container
72 72
     {
73
-        $container->set(static::FACADE_EVENT_BEHAVIOR, function (Container $container) {
73
+        $container->set(static::FACADE_EVENT_BEHAVIOR, function(Container $container) {
74 74
             return new CmsBlockStorageToEventBehaviorFacadeBridge($container->getLocator()->eventBehavior()->facade());
75 75
         });
76 76
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     protected function addContentWidgetDataExpanderPlugin(Container $container): Container
86 86
     {
87
-        $container->set(static::PLUGIN_CONTENT_WIDGET_DATA_EXPANDER, function () {
87
+        $container->set(static::PLUGIN_CONTENT_WIDGET_DATA_EXPANDER, function() {
88 88
             return $this->getContentWidgetDataExpanderPlugins();
89 89
         });
90 90
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     protected function addStoreFacade(Container $container): Container
100 100
     {
101
-        $container->set(static::FACADE_STORE, function (Container $container) {
101
+        $container->set(static::FACADE_STORE, function(Container $container) {
102 102
             return new CmsBlockStorageToStoreFacadeBridge($container->getLocator()->store()->facade());
103 103
         });
104 104
 
Please login to merge, or discard this patch.
Plugin/CmsContentWidget/CmsBlockContentWidgetPlugin.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,8 +72,7 @@
 block discarded – undo
72 72
 
73 73
             if ($isActive) {
74 74
                 $templatePath = !$templateIdentifier && $cmsBlockTransfer->getCmsBlockTemplate() ?
75
-                    $cmsBlockTransfer->getCmsBlockTemplate()->getTemplatePath() :
76
-                    $this->resolveTemplatePath($templateIdentifier);
75
+                    $cmsBlockTransfer->getCmsBlockTemplate()->getTemplatePath() : $this->resolveTemplatePath($templateIdentifier);
77 76
 
78 77
                 $rendered .= $twig->render($templatePath, [
79 78
                     'placeholders' => $this->getPlaceholders($cmsBlockTransfer),
Please login to merge, or discard this patch.
ZedRequest/src/Spryker/Glue/ZedRequest/ZedRequestDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addZedRequestClient(Container $container): Container
38 38
     {
39
-        $container->set(static::CLIENT_ZED_REQUEST, function (Container $container) {
39
+        $container->set(static::CLIENT_ZED_REQUEST, function(Container $container) {
40 40
             return $container->getLocator()->zedRequest()->client();
41 41
         });
42 42
 
Please login to merge, or discard this patch.
HealthCheck/src/Spryker/Glue/HealthCheck/HealthCheckDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addHealthCheckPlugins(Container $container): Container
38 38
     {
39
-        $container->set(static::PLUGINS_HEALTH_CHECK, function (Container $container) {
39
+        $container->set(static::PLUGINS_HEALTH_CHECK, function(Container $container) {
40 40
             return $this->getHealthCheckPlugins();
41 41
         });
42 42
 
Please login to merge, or discard this patch.
Bundles/Storage/src/Spryker/Glue/Storage/StorageDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addStorageClient(Container $container): Container
38 38
     {
39
-        $container->set(static::CLIENT_STORAGE, function (Container $container) {
39
+        $container->set(static::CLIENT_STORAGE, function(Container $container) {
40 40
             return $container->getLocator()->storage()->client();
41 41
         });
42 42
 
Please login to merge, or discard this patch.
Bundles/Search/src/Spryker/Glue/Search/SearchDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addSearchClient(Container $container): Container
38 38
     {
39
-        $container->set(static::CLIENT_SEARCH, function (Container $container) {
39
+        $container->set(static::CLIENT_SEARCH, function(Container $container) {
40 40
             return $container->getLocator()->search()->client();
41 41
         });
42 42
 
Please login to merge, or discard this patch.
HealthCheck/src/Spryker/Zed/HealthCheck/HealthCheckDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addHealthCheckPlugins(Container $container): Container
38 38
     {
39
-        $container->set(static::PLUGINS_HEALTH_CHECK, function (Container $container) {
39
+        $container->set(static::PLUGINS_HEALTH_CHECK, function(Container $container) {
40 40
             return $this->getHealthCheckPlugins();
41 41
         });
42 42
 
Please login to merge, or discard this patch.
HealthCheck/src/Spryker/Yves/HealthCheck/HealthCheckDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addHealthCheckPlugins(Container $container): Container
38 38
     {
39
-        $container->set(static::PLUGINS_HEALTH_CHECK, function (Container $container) {
39
+        $container->set(static::PLUGINS_HEALTH_CHECK, function(Container $container) {
40 40
             return $this->getHealthCheckPlugins();
41 41
         });
42 42
 
Please login to merge, or discard this patch.
Bundles/Storage/src/Spryker/Yves/Storage/StorageDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     protected function addStorageClient(Container $container): Container
38 38
     {
39
-        $container->set(static::CLIENT_STORAGE, function (Container $container) {
39
+        $container->set(static::CLIENT_STORAGE, function(Container $container) {
40 40
             return $container->getLocator()->storage()->client();
41 41
         });
42 42
 
Please login to merge, or discard this patch.