Completed
Push — theme-bundle ( aad440...af4cdd )
by Kamil
15:45
created
src/Sylius/Bundle/CoreBundle/Controller/ProductController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -347,7 +347,7 @@
 block discarded – undo
347 347
         Pagerfanta $results,
348 348
         $template,
349 349
         $page
350
-    ){
350
+    ) {
351 351
         $results->setCurrentPage($page, true, true);
352 352
         $results->setMaxPerPage($this->config->getPaginationMaxPerPage());
353 353
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/TaxonomyBundle/Form/Type/TaxonSelectionType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
             ))
91 91
         ;
92 92
 
93
-        $resolver->setNormalizer('model_transformer', function (Options $options, $value) {
93
+        $resolver->setNormalizer('model_transformer', function(Options $options, $value) {
94 94
             if (!is_array($value)) {
95 95
                 $value = array(
96 96
                     'class'        => $value,
Please login to merge, or discard this patch.
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.
Bundle/ThemeBundle/Templating/Cache/Warmer/TemplatePathsCacheWarmer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,6 +118,6 @@
 block discarded – undo
118 118
      */
119 119
     private function getCacheKey(TemplateReferenceInterface $template, ThemeInterface $theme)
120 120
     {
121
-        return $template->getLogicalName() . '|' . $theme->getSlug();
121
+        return $template->getLogicalName().'|'.$theme->getSlug();
122 122
     }
123 123
 }
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.