Completed
Push — master ( 5a65c0...790593 )
by Fabien
05:04
created
Classes/Backend/LanguageFileGenerator.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $content = str_replace('{module_name}', $label, $this->template);
53 53
         GeneralUtility::writeFileToTypo3tempDir($languageFile, $content);
54 54
 
55
-        return 'LLL:' . $languageFile;
55
+        return 'LLL:'.$languageFile;
56 56
     }
57 57
 
58 58
     /**
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected function getLanguageFile($dataType)
63 63
     {
64
-        return $this->getLanguageDirectory() . '/' . $dataType . '.xlf';
64
+        return $this->getLanguageDirectory().'/'.$dataType.'.xlf';
65 65
     }
66 66
 
67 67
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     protected function getLanguageDirectory()
71 71
     {
72 72
         // Create language file dynamically
73
-        $languageDirectory = PATH_site . 'typo3temp/vidi';
73
+        $languageDirectory = PATH_site.'typo3temp/vidi';
74 74
         if (!is_dir($languageDirectory)) {
75 75
             GeneralUtility::mkdir($languageDirectory);
76 76
         }
Please login to merge, or discard this patch.