Completed
Push — master ( 79d213...eeff33 )
by Kamil
23:15
created
Sylius/Bundle/ThemeBundle/Translation/Provider/ThemeTranslationResource.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
         }
56 56
 
57 57
         $this->domain = $parts[0];
58
-        $this->locale = $parts[1] . '_' . $theme->getCode();
58
+        $this->locale = $parts[1].'_'.$theme->getCode();
59 59
         $this->format = $parts[2];
60 60
     }
61 61
 
Please login to merge, or discard this patch.
Bundle/ThemeBundle/Translation/Provider/ThemeTranslatorResourceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      */
73 73
     public function getResourcesLocales()
74 74
     {
75
-        return array_values(array_unique(array_map(function (TranslationResourceInterface $translationResource) {
75
+        return array_values(array_unique(array_map(function(TranslationResourceInterface $translationResource) {
76 76
             return $translationResource->getLocale();
77 77
         }, $this->getResources())));
78 78
     }
Please login to merge, or discard this patch.
Bundle/ThemeBundle/Translation/Finder/OrderingTranslationFilesFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
          * PHP 5.* bug, fixed in PHP 7: https://bugs.php.net/bug.php?id=50688
38 38
          * "usort(): Array was modified by the user comparison function"
39 39
          */
40
-        @usort($files, function ($firstFile, $secondFile) use ($path) {
40
+        @usort($files, function($firstFile, $secondFile) use ($path) {
41 41
             $firstFile = str_replace($path, '', $firstFile);
42 42
             $secondFile = str_replace($path, '', $secondFile);
43 43
 
Please login to merge, or discard this patch.