@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | $moduleConfigPath = get_instance()->module->findConfigFullPath($filename, $module); |
| 220 | 220 | if ($moduleConfigPath) { |
| 221 | 221 | $this->logger->info('Found config [' . $filename . '] from module [' . $module . '], ' |
| 222 | - . 'the file path is [' . $moduleConfigPath . '] we will used it'); |
|
| 222 | + . 'the file path is [' . $moduleConfigPath . '] we will used it'); |
|
| 223 | 223 | $configFilePath = $moduleConfigPath; |
| 224 | 224 | } else { |
| 225 | 225 | $this->logger->info('Cannot find config [' . $filename . '] from modules using the default location'); |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | $moduleLibraryPath = get_instance()->module->findLibraryFullPath($class, $module); |
| 480 | 480 | if ($moduleLibraryPath) { |
| 481 | 481 | $this->logger->info('Found library [' . $class . '] from module [' . $module . '], the ' |
| 482 | - . 'file path is [' . $moduleLibraryPath . '] we will used it'); |
|
| 482 | + . 'file path is [' . $moduleLibraryPath . '] we will used it'); |
|
| 483 | 483 | $libraryFilePath = $moduleLibraryPath; |
| 484 | 484 | } else { |
| 485 | 485 | $this->logger->info('Cannot find library [' . $class . '] from modules using the default location'); |
@@ -29,8 +29,8 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | - * DB session handler model class |
|
| 33 | - */ |
|
| 32 | + * DB session handler model class |
|
| 33 | + */ |
|
| 34 | 34 | abstract class DBSessionHandlerModel extends Model { |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -40,14 +40,14 @@ discard block |
||
| 40 | 40 | * |
| 41 | 41 | * @example |
| 42 | 42 | * array( |
| 43 | - * 'sid' => '', //VARCHAR(100) Note: this a primary key |
|
| 44 | - * 'sdata' => '', //TEXT |
|
| 45 | - * 'stime' => '', //unix timestamp (INT|BIGINT) |
|
| 46 | - * 'shost' => '', //VARCHAR(255) |
|
| 47 | - * 'sip' => '', //VARCHAR(128) |
|
| 48 | - * 'sbrowser' => '', //VARCHAR(255) |
|
| 49 | - * 'skey' => '' //VARCHAR(255) |
|
| 50 | - * ); |
|
| 43 | + * 'sid' => '', //VARCHAR(100) Note: this a primary key |
|
| 44 | + * 'sdata' => '', //TEXT |
|
| 45 | + * 'stime' => '', //unix timestamp (INT|BIGINT) |
|
| 46 | + * 'shost' => '', //VARCHAR(255) |
|
| 47 | + * 'sip' => '', //VARCHAR(128) |
|
| 48 | + * 'sbrowser' => '', //VARCHAR(255) |
|
| 49 | + * 'skey' => '' //VARCHAR(255) |
|
| 50 | + * ); |
|
| 51 | 51 | */ |
| 52 | 52 | protected $sessionTableColumns = array(); |
| 53 | 53 | |
@@ -46,9 +46,9 @@ discard block |
||
| 46 | 46 | if ($init) { |
| 47 | 47 | $this->init(); |
| 48 | 48 | //@codeCoverageIgnoreStart |
| 49 | - if (ENVIRONMENT == 'production' && in_array(strtolower($this->config['log_level']), array('debug', 'info', 'notice'))) { |
|
| 49 | + if (ENVIRONMENT == 'production' && in_array(strtolower($this->config['log_level']), array('debug', 'info', 'notice'))) { |
|
| 50 | 50 | $this->logger->warning('You are in production environment, please set ' |
| 51 | - . 'log level to WARNING, ERROR, CRITICAL, ALERT, EMERGENCY to increase the application performance'); |
|
| 51 | + . 'log level to WARNING, ERROR, CRITICAL, ALERT, EMERGENCY to increase the application performance'); |
|
| 52 | 52 | } |
| 53 | 53 | //@codeCoverageIgnoreEnd |
| 54 | 54 | } |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | if (empty($this->config['base_url'])) { |
| 147 | 147 | if (ENVIRONMENT == 'production') { |
| 148 | 148 | $this->logger->warning('Application base URL is not set or invalid, please' |
| 149 | - . ' set application base URL to increase the application loading time'); |
|
| 149 | + . ' set application base URL to increase the application loading time'); |
|
| 150 | 150 | } |
| 151 | 151 | $baseUrl = null; |
| 152 | 152 | $protocol = 'http'; |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | ); |
| 174 | 174 | } else { |
| 175 | 175 | $this->logger->warning('Can not determine the application ' |
| 176 | - . 'base URL automatically, use http://localhost as default'); |
|
| 176 | + . 'base URL automatically, use http://localhost as default'); |
|
| 177 | 177 | $baseUrl = 'http://localhost/'; |
| 178 | 178 | } |
| 179 | 179 | $this->config['base_url'] = $baseUrl; |
@@ -182,11 +182,11 @@ discard block |
||
| 182 | 182 | } |
| 183 | 183 | |
| 184 | 184 | /** |
| 185 | - * Return the server port using variable |
|
| 186 | - * |
|
| 187 | - * @codeCoverageIgnore |
|
| 188 | - * @return string |
|
| 189 | - */ |
|
| 185 | + * Return the server port using variable |
|
| 186 | + * |
|
| 187 | + * @codeCoverageIgnore |
|
| 188 | + * @return string |
|
| 189 | + */ |
|
| 190 | 190 | protected function getServerPort() { |
| 191 | 191 | $globals = & class_loader('GlobalVar', 'classes'); |
| 192 | 192 | $serverPort = $globals->server('SERVER_PORT'); |
@@ -169,13 +169,13 @@ discard block |
||
| 169 | 169 | $this->log(self::DEBUG, $message); |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - /** |
|
| 173 | - * Logs with an arbitrary level. |
|
| 174 | - * |
|
| 175 | - * @param integer|string $level the log level in integer or string format, |
|
| 176 | - * if is string will convert into integer. |
|
| 177 | - * @param string $message the log message to be saved |
|
| 178 | - */ |
|
| 172 | + /** |
|
| 173 | + * Logs with an arbitrary level. |
|
| 174 | + * |
|
| 175 | + * @param integer|string $level the log level in integer or string format, |
|
| 176 | + * if is string will convert into integer. |
|
| 177 | + * @param string $message the log message to be saved |
|
| 178 | + */ |
|
| 179 | 179 | public function log($level, $message) { |
| 180 | 180 | $configLogLevel = get_config('log_level'); |
| 181 | 181 | if (!$configLogLevel) { |
@@ -187,11 +187,11 @@ discard block |
||
| 187 | 187 | //NOTE: here need put the show_error() "logging" to false |
| 188 | 188 | //to prevent self function loop call |
| 189 | 189 | show_error('Invalid config log level [' . $configLogLevel . '], ' |
| 190 | - . 'the value must be one of the following: ' |
|
| 191 | - . implode(', ', array_map('strtoupper', self::$validConfigLevel)) |
|
| 192 | - , 'Log Config Error', |
|
| 193 | - $logging = false |
|
| 194 | - ); |
|
| 190 | + . 'the value must be one of the following: ' |
|
| 191 | + . implode(', ', array_map('strtoupper', self::$validConfigLevel)) |
|
| 192 | + , 'Log Config Error', |
|
| 193 | + $logging = false |
|
| 194 | + ); |
|
| 195 | 195 | return; |
| 196 | 196 | } |
| 197 | 197 | |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | protected function levelCanSaveLog($level) { |
| 262 | 262 | $result = true; |
| 263 | 263 | $configLogLevel = get_config('log_level'); |
| 264 | - //check if can save log regarding the log level configuration |
|
| 264 | + //check if can save log regarding the log level configuration |
|
| 265 | 265 | $configLevel = self::getLevelValue($configLogLevel); |
| 266 | 266 | if ($configLevel > $level) { |
| 267 | 267 | //can't log |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | //NOTE: here need put the show_error() "logging" to false |
| 342 | 342 | //to prevent self function loop call |
| 343 | 343 | show_error('Error : the log dir does not exist or is not writable', |
| 344 | - 'Log directory error', $logging = false); |
|
| 344 | + 'Log directory error', $logging = false); |
|
| 345 | 345 | } |
| 346 | 346 | |
| 347 | 347 | $path = $logSavePath . 'logs-' . date('Y-m-d') . '.log'; |