Completed
Push — master ( 6e8019...535582 )
by Daniel
04:27
created
source/CommonLibLocale.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     }
64 64
 
65 65
     protected function getTimestampRaw($returnType) {
66
-        return call_user_func([$this, 'getTimestamp' . ucfirst($returnType)], gettimeofday());
66
+        return call_user_func([$this, 'getTimestamp'.ucfirst($returnType)], gettimeofday());
67 67
     }
68 68
 
69 69
     private function getTimestampString($crtTime) {
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
      */
102 102
     private function handleLocalizationCommon() {
103 103
         $this->handleLanguageIntoSession();
104
-        $localizationFile = $this->getCommonLocaleFolder() . '/locale/'
105
-                . $this->tCmnSession->get('lang') . '/LC_MESSAGES/'
106
-                . $this->commonLibFlags['localization_domain'] . '.mo';
104
+        $localizationFile = $this->getCommonLocaleFolder().'/locale/'
105
+                . $this->tCmnSession->get('lang').'/LC_MESSAGES/'
106
+                . $this->commonLibFlags['localization_domain'].'.mo';
107 107
         $translations     = new \Gettext\Translations;
108 108
         $translations->addFromMoFile($localizationFile);
109 109
         $this->tCmnLb     = new \Gettext\Translator();
Please login to merge, or discard this patch.
source/MySQLiByDanielGP.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,11 +88,11 @@  discard block
 block discarded – undo
88 88
             'size'      => 10,
89 89
             'maxlength' => 10,
90 90
             'onfocus'   => implode('', [
91
-                'javascript:NewCssCal(\'' . $value['COLUMN_NAME'],
91
+                'javascript:NewCssCal(\''.$value['COLUMN_NAME'],
92 92
                 '\',\'yyyyMMdd\',\'dropdown\',false,\'24\',false);',
93 93
             ]),
94 94
         ];
95
-        return $this->setStringIntoShortTag('input', $inA) . $this->setCalendarControl($value['COLUMN_NAME']);
95
+        return $this->setStringIntoShortTag('input', $inA).$this->setCalendarControl($value['COLUMN_NAME']);
96 96
     }
97 97
 
98 98
     /**
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                 return [$line[0], $line[1]];
182 182
             // intentionally left open
183 183
             case 'array_key2_value':
184
-                return [$line[0] . '@' . $line[1], $line[1]];
184
+                return [$line[0].'@'.$line[1], $line[1]];
185 185
             // intentionally left open
186 186
             case 'array_numbered':
187 187
                 return [$counter, $line[0]];
Please login to merge, or discard this patch.