Passed
Push — master ( 843207...29f725 )
by mark
36:53 queued 19:40
created
CmsContentWidgetChartConnectorDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     protected function addCmsChartContentWidgetPlugins(Container $container): Container
36 36
     {
37
-        $container[static::PLUGIN_CMS_CHART_CONTENT_WIDGETS] = function () {
37
+        $container[static::PLUGIN_CMS_CHART_CONTENT_WIDGETS] = function() {
38 38
             return $this->getCmsChartContentWidgetPlugins();
39 39
         };
40 40
 
Please login to merge, or discard this patch.
src/SprykerShop/Yves/ChartWidget/ChartWidgetDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     protected function addTwigChartFunctionPlugins(Container $container): Container
41 41
     {
42
-        $container[static::PLUGIN_TWIG_CHART_FUNCTIONS] = function () {
42
+        $container[static::PLUGIN_TWIG_CHART_FUNCTIONS] = function() {
43 43
             return $this->getTwigChartFunctionPlugins();
44 44
         };
45 45
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     protected function addChartPlugins(Container $container): Container
55 55
     {
56
-        $container[static::PLUGIN_CHARTS] = function () {
56
+        $container[static::PLUGIN_CHARTS] = function() {
57 57
             return $this->getChartPlugins();
58 58
         };
59 59
 
Please login to merge, or discard this patch.
Yves/ChartWidget/Plugin/Provider/TwigChartFunctionServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function register(Application $app): void
26 26
     {
27 27
         $app['twig'] = $app->share(
28
-            $app->extend('twig', function (\Twig_Environment $twig) {
28
+            $app->extend('twig', function(\Twig_Environment $twig) {
29 29
                 return $this->registerChartTwigFunctions($twig);
30 30
             })
31 31
         );
Please login to merge, or discard this patch.