Completed
Push — theme-bundle ( 6263d9...2fd15f )
by Kamil
17:14
created
src/Sylius/Bundle/ThemeBundle/PhpSpec/FixtureAwareObjectBehavior.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
      */
26 26
     protected function getFixturePath($fixturePath)
27 27
     {
28
-        $path = __DIR__ . '/../spec/fixtures/' . $fixturePath;
28
+        $path = __DIR__.'/../spec/fixtures/'.$fixturePath;
29 29
 
30 30
         if (false === $realpath = realpath($path)) {
31 31
             throw new \RuntimeException(sprintf('Fixture "%s" does not exist!', $path));
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/app/AppKernel.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -17,18 +17,18 @@  discard block
 block discarded – undo
17 17
 while ($dir !== $lastDir) {
18 18
     $lastDir = $dir;
19 19
 
20
-    if (file_exists($dir . '/autoload.php')) {
21
-        require_once $dir . '/autoload.php';
20
+    if (file_exists($dir.'/autoload.php')) {
21
+        require_once $dir.'/autoload.php';
22 22
         break;
23 23
     }
24 24
 
25
-    if (file_exists($dir . '/autoload.php.dist')) {
26
-        require_once $dir . '/autoload.php.dist';
25
+    if (file_exists($dir.'/autoload.php.dist')) {
26
+        require_once $dir.'/autoload.php.dist';
27 27
         break;
28 28
     }
29 29
 
30
-    if (file_exists($dir . '/vendor/autoload.php')) {
31
-        require_once $dir . '/vendor/autoload.php';
30
+    if (file_exists($dir.'/vendor/autoload.php')) {
31
+        require_once $dir.'/vendor/autoload.php';
32 32
         break;
33 33
     }
34 34
 
@@ -51,13 +51,13 @@  discard block
 block discarded – undo
51 51
 
52 52
     public function __construct($testCase, $rootConfig, $environment, $debug)
53 53
     {
54
-        if (!is_dir(__DIR__ . '/' . $testCase)) {
54
+        if (!is_dir(__DIR__.'/'.$testCase)) {
55 55
             throw new \InvalidArgumentException(sprintf('The test case "%s" does not exist.', $testCase));
56 56
         }
57 57
         $this->testCase = $testCase;
58 58
 
59 59
         $fs = new Filesystem();
60
-        if (!$fs->isAbsolutePath($rootConfig) && !file_exists($rootConfig = __DIR__ . '/' . $testCase . '/' . $rootConfig)) {
60
+        if (!$fs->isAbsolutePath($rootConfig) && !file_exists($rootConfig = __DIR__.'/'.$testCase.'/'.$rootConfig)) {
61 61
             throw new \InvalidArgumentException(sprintf('The root config "%s" does not exist.', $rootConfig));
62 62
         }
63 63
         $this->rootConfig = $rootConfig;
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     public function registerBundles()
69 69
     {
70
-        if (!file_exists($filename = $this->getRootDir() . '/' . $this->testCase . '/bundles.php')) {
70
+        if (!file_exists($filename = $this->getRootDir().'/'.$this->testCase.'/bundles.php')) {
71 71
             throw new \RuntimeException(sprintf('The bundles file "%s" does not exist.', $filename));
72 72
         }
73 73
 
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
 
82 82
     public function getCacheDir()
83 83
     {
84
-        return sys_get_temp_dir() . '/' . Kernel::VERSION . '/' . $this->testCase . '/cache/' . $this->environment;
84
+        return sys_get_temp_dir().'/'.Kernel::VERSION.'/'.$this->testCase.'/cache/'.$this->environment;
85 85
     }
86 86
 
87 87
     public function getLogDir()
88 88
     {
89
-        return sys_get_temp_dir() . '/' . Kernel::VERSION . '/' . $this->testCase . '/logs';
89
+        return sys_get_temp_dir().'/'.Kernel::VERSION.'/'.$this->testCase.'/logs';
90 90
     }
91 91
 
92 92
     public function registerContainerConfiguration(LoaderInterface $loader)
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/AssetTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function testAssets($symlinkMask)
27 27
     {
28
-        $webDirectory = $this->getTmpDirPath(self::TEST_CASE) . '/web';
28
+        $webDirectory = $this->getTmpDirPath(self::TEST_CASE).'/web';
29 29
         if (!is_dir($webDirectory)) {
30 30
             mkdir($webDirectory, 0777, true);
31 31
         }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         foreach ($lines as $line) {
42 42
             list($expectedText, $assetFile) = explode(": ", $line);
43 43
 
44
-            $contents = file_get_contents($webDirectory . $assetFile);
44
+            $contents = file_get_contents($webDirectory.$assetFile);
45 45
 
46 46
             $this->assertEquals($expectedText, $contents);
47 47
         }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/WebTestCase.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 getTmpDirPath($testCase)
37 37
     {
38
-        return sys_get_temp_dir() . '/' . Kernel::VERSION . '/' . $testCase;
38
+        return sys_get_temp_dir().'/'.Kernel::VERSION.'/'.$testCase;
39 39
     }
40 40
 
41 41
     protected static function getKernelClass()
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Tests/Functional/TemplatingTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $client = $this->getClient();
28 28
 
29
-        $crawler = $client->request('GET', '/template/' . $templateName);
29
+        $crawler = $client->request('GET', '/template/'.$templateName);
30 30
         $this->assertEquals($contents, $crawler->text());
31 31
     }
32 32
 
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     {
55 55
         $client = $this->getClient();
56 56
 
57
-        $crawler = $client->request('GET', '/template/' . $templateName);
57
+        $crawler = $client->request('GET', '/template/'.$templateName);
58 58
         $this->assertEquals($contents, $crawler->text());
59 59
     }
60 60
 
Please login to merge, or discard this patch.
spec/Translation/DependencyInjection/Compiler/ThemeAwareSourcesPassSpec.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,9 +72,9 @@
 block discarded – undo
72 72
             "resource_files" => [
73 73
                 "en" => [
74 74
                     "/lorem/ipsum/messages.en.yml",
75
-                    $this->getFirstThemePath() . '/SampleBundle/translations/messages.en.yml',
76
-                    $this->getFirstThemePath() . '/translations/messages.en.yml',
77
-                    $this->getSecondThemePath() . '/translations/messages.en.yml',
75
+                    $this->getFirstThemePath().'/SampleBundle/translations/messages.en.yml',
76
+                    $this->getFirstThemePath().'/translations/messages.en.yml',
77
+                    $this->getSecondThemePath().'/translations/messages.en.yml',
78 78
                 ]
79 79
             ]
80 80
         ])->shouldBeCalled();
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/spec/Asset/Package/PathPackageSpec.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         $themeContext->getTheme()->shouldBeCalled()->willReturn(null);
54 54
         $versionStrategy->applyVersion($path)->shouldBeCalled()->willReturn($path);
55 55
 
56
-        $this->getUrl($path)->shouldReturn($this->getBasePath() . $path);
56
+        $this->getUrl($path)->shouldReturn($this->getBasePath().$path);
57 57
     }
58 58
 
59 59
     function it_returns_modified_url_if_there_is_active_theme(
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $pathResolver->resolve($path, $theme)->shouldBeCalled()->willReturn($themeAssetPath);
71 71
         $versionStrategy->applyVersion($themeAssetPath)->shouldBeCalled()->willReturn($themeAssetPath);
72 72
 
73
-        $this->getUrl($path)->shouldReturn($this->getBasePath() . $themeAssetPath);
73
+        $this->getUrl($path)->shouldReturn($this->getBasePath().$themeAssetPath);
74 74
     }
75 75
 
76 76
     /**
@@ -78,6 +78,6 @@  discard block
 block discarded – undo
78 78
      */
79 79
     private function getBasePath()
80 80
     {
81
-        return $this->getFixturePath('web') . '/';
81
+        return $this->getFixturePath('web').'/';
82 82
     }
83 83
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Translation/Translator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
         $themes = $this->themeContext->getThemeHierarchy();
142 142
 
143 143
         foreach ($themes as $theme) {
144
-            yield $id . "|" . $theme->getSlug();
144
+            yield $id."|".$theme->getSlug();
145 145
         }
146 146
 
147 147
         yield $id;
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Translation/Loader/ThemeAwareLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 
55 55
             foreach ($messages as $key => $value) {
56 56
                 unset($messages[$key]);
57
-                $messages[$key . '|' . $theme->getSlug()] = $value;
57
+                $messages[$key.'|'.$theme->getSlug()] = $value;
58 58
             }
59 59
 
60 60
             $messageCatalogue->replace($messages, $domain);
Please login to merge, or discard this patch.