Completed
Push — theme-bundle ( ccadad...4f3506 )
by Kamil
47:50 queued 30:17
created
src/Sylius/Bundle/ResourceBundle/Form/Type/ResourceChoiceType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
             ->setDefaults(array(
62 62
                 'class' => null,
63 63
             ))
64
-            ->setNormalizer('class', function () {
64
+            ->setNormalizer('class', function() {
65 65
                 return $this->className;
66 66
             })
67 67
         ;
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Templating/Locator/CachedTemplateLocator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,6 +68,6 @@
 block discarded – undo
68 68
      */
69 69
     private function getCacheKey(TemplateReferenceInterface $template, ThemeInterface $theme)
70 70
     {
71
-        return $template->getLogicalName() . '|' . $theme->getSlug();
71
+        return $template->getLogicalName().'|'.$theme->getSlug();
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
Bundle/ThemeBundle/Templating/Cache/Warmer/TemplatePathsCacheWarmer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,6 +68,6 @@
 block discarded – undo
68 68
      */
69 69
     private function getCacheKey(TemplateReferenceInterface $template, ThemeInterface $theme)
70 70
     {
71
-        return $template->getLogicalName() . '|' . $theme->getSlug();
71
+        return $template->getLogicalName().'|'.$theme->getSlug();
72 72
     }
73 73
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ThemeBundle/Asset/PathResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
      */
24 24
     public function resolve($path, ThemeInterface $theme)
25 25
     {
26
-        return str_replace('bundles/', 'bundles/_' . $theme->getCode() . '/', $path);
26
+        return str_replace('bundles/', 'bundles/_'.$theme->getCode().'/', $path);
27 27
     }
28 28
 }
Please login to merge, or discard this patch.