Completed
Push — master ( a848b9...3bf197 )
by Daniel
02:56
created
source/Romanian.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      */
57 57
     protected function readTypeFromJsonFileUniversal($filePath, $fileBaseName)
58 58
     {
59
-        $fName       = $filePath . DIRECTORY_SEPARATOR . $fileBaseName . '.min.json';
59
+        $fName       = $filePath.DIRECTORY_SEPARATOR.$fileBaseName.'.min.json';
60 60
         $fJson       = fopen($fName, 'r');
61 61
         $jSonContent = fread($fJson, filesize($fName));
62 62
         fclose($fJson);
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     {
148 148
         $givenYear      = $lngDate->format('Y');
149 149
         $daying         = [];
150
-        $configPath     = __DIR__ . DIRECTORY_SEPARATOR . 'json';
150
+        $configPath     = __DIR__.DIRECTORY_SEPARATOR.'json';
151 151
         $statmentsArray = $this->readTypeFromJsonFileUniversal($configPath, 'RomanianBankHolidays');
152 152
         if (array_key_exists($givenYear, $statmentsArray)) {
153 153
             foreach ($statmentsArray[$givenYear] as $value) {
Please login to merge, or discard this patch.