Passed
Push — master ( 7a7cfe...9ace4b )
by Mark
35:26
created
Bundles/Collector/src/Spryker/Zed/Collector/CollectorDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     {
30 30
         $container = $this->provideLocaleFacade($container);
31 31
 
32
-        $container[self::QUERY_CONTAINER_TOUCH] = function (Container $container) {
32
+        $container[self::QUERY_CONTAINER_TOUCH] = function(Container $container) {
33 33
             return $container->getLocator()->touch()->queryContainer();
34 34
         };
35 35
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      */
56 56
     private function provideLocaleFacade(Container $container)
57 57
     {
58
-        $container[self::FACADE_LOCALE] = function (Container $container) {
58
+        $container[self::FACADE_LOCALE] = function(Container $container) {
59 59
             return new CollectorToLocaleBridge($container->getLocator()->locale()->facade());
60 60
         };
61 61
 
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/Collector/_support/CollectorBusinessTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\CollectorBusinessTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Bundles/Installer/src/Spryker/Zed/Installer/InstallerDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     {
25 25
         $container = parent::provideBusinessLayerDependencies($container);
26 26
 
27
-        $container[static::INSTALLER_PLUGINS] = function (Container $container) {
27
+        $container[static::INSTALLER_PLUGINS] = function(Container $container) {
28 28
             return $this->getInstallerPlugins();
29 29
         };
30 30
 
Please login to merge, or discard this patch.
Twig/src/Spryker/Yves/Twig/Plugin/ServiceProvider/TwigServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function register(Application $app)
28 28
     {
29
-        $app[static::TWIG_LOADER_YVES] = function () {
29
+        $app[static::TWIG_LOADER_YVES] = function() {
30 30
             return $this->getFactory()->createFilesystemLoader();
31 31
         };
32 32
     }
Please login to merge, or discard this patch.
Bundles/Twig/src/Spryker/Yves/Twig/TwigDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      */
36 36
     protected function addUtilTextService(Container $container)
37 37
     {
38
-        $container[static::SERVICE_UTIL_TEXT] = function (Container $container) {
38
+        $container[static::SERVICE_UTIL_TEXT] = function(Container $container) {
39 39
             return new TwigToUtilTextServiceBridge($container->getLocator()->utilText()->service());
40 40
         };
41 41
 
Please login to merge, or discard this patch.
Zed/Twig/Communication/Plugin/ServiceProvider/TwigServiceProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -44,11 +44,11 @@  discard block
 block discarded – undo
44 44
 
45 45
         $this->provideFormTypeTemplates();
46 46
 
47
-        $app['twig.loader.zed'] = $app->share(function () {
47
+        $app['twig.loader.zed'] = $app->share(function() {
48 48
             return $this->getFactory()->createFilesystemLoader();
49 49
         });
50 50
 
51
-        $app['twig.loader'] = $app->share(function ($app) {
51
+        $app['twig.loader'] = $app->share(function($app) {
52 52
             return new Twig_Loader_Chain(
53 53
                 [
54 54
                     $app['twig.loader.zed'],
@@ -59,14 +59,14 @@  discard block
 block discarded – undo
59 59
 
60 60
         $app['twig.options'] = Config::get(TwigConstants::ZED_TWIG_OPTIONS);
61 61
 
62
-        $app['twig.global.variables'] = $app->share(function () {
62
+        $app['twig.global.variables'] = $app->share(function() {
63 63
             return [];
64 64
         });
65 65
 
66 66
         $app['twig'] = $app->share(
67 67
             $app->extend(
68 68
                 'twig',
69
-                function (Twig_Environment $twig) use ($app) {
69
+                function(Twig_Environment $twig) use ($app) {
70 70
                     foreach ($app['twig.global.variables'] as $name => $value) {
71 71
                         $twig->addGlobal($name, $value);
72 72
                     }
Please login to merge, or discard this patch.
Bundles/Twig/tests/SprykerTest/Yves/Twig/_support/TwigYvesTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\TwigYvesTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Bundles/Twig/tests/SprykerTest/Shared/Twig/_support/TwigSharedTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
 
24 24
     use _generated\TwigSharedTesterActions;
25 25
 
26
-   /**
27
-    * Define custom actions here
28
-    */
26
+    /**
27
+     * Define custom actions here
28
+     */
29 29
 
30 30
 }
Please login to merge, or discard this patch.
Twig/tests/SprykerTest/Shared/Twig/Cache/Cache/FilesystemCacheTest.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     'invalid key' => false,
80 80
 ];
81 81
 
82
-TXT
82
+txt
83 83
         );
84 84
     }
85 85
 
Please login to merge, or discard this patch.