Completed
Push — resource-classnames ( 503d2e )
by Kamil
18:12
created
src/Sylius/Bundle/FixturesBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/UiBundle/View/Template/SemanticUiTemplate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
 
71 71
     private function previousDisabledClass()
72 72
     {
73
-        return $this->option('css_prev_class').' '.$this->option('css_disabled_class');
73
+        return $this->option('css_prev_class') . ' ' . $this->option('css_disabled_class');
74 74
     }
75 75
 
76 76
     public function previousEnabled($page)
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
     private function nextDisabledClass()
93 93
     {
94
-        return $this->option('css_next_class').' '.$this->option('css_disabled_class');
94
+        return $this->option('css_next_class') . ' ' . $this->option('css_disabled_class');
95 95
     }
96 96
 
97 97
     public function nextEnabled($page)
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
     public function current($page)
116 116
     {
117
-        $text = trim($page.' '.$this->option('active_suffix'));
117
+        $text = trim($page . ' ' . $this->option('active_suffix'));
118 118
         $class = $this->option('css_active_class');
119 119
 
120 120
         return $this->div($class, $text);
Please login to merge, or discard this patch.
src/Sylius/Bundle/CurrencyBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/CurrencyBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/UserBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/PromotionBundle/test/app/AppKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function registerContainerConfiguration(LoaderInterface $loader)
46 46
     {
47
-        $loader->load(__DIR__.'/config/config.yml');
47
+        $loader->load(__DIR__ . '/config/config.yml');
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
src/Sylius/Bundle/PromotionBundle/test/app/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,9 +12,9 @@
 block discarded – undo
12 12
 use Composer\Autoload\ClassLoader;
13 13
 use Doctrine\Common\Annotations\AnnotationRegistry;
14 14
 
15
-$loader = require __DIR__.'/../../vendor/autoload.php';
15
+$loader = require __DIR__ . '/../../vendor/autoload.php';
16 16
 
17
-require __DIR__.'/AppKernel.php';
17
+require __DIR__ . '/AppKernel.php';
18 18
 
19 19
 AnnotationRegistry::registerLoader([$loader, 'loadClass']);
20 20
 
Please login to merge, or discard this patch.
src/Sylius/Component/Grid/Filter/DateFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
             return $data['date'];
57 57
         }
58 58
 
59
-        return $data['date'].' '.$data['time'];
59
+        return $data['date'] . ' ' . $data['time'];
60 60
     }
61 61
 }
Please login to merge, or discard this patch.