@@ -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', 'all'))) { |
|
49 | + if (ENVIRONMENT == 'production' && in_array(strtolower($this->config['log_level']), array('debug', 'info', 'all'))) { |
|
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'); |
@@ -180,17 +180,17 @@ discard block |
||
180 | 180 | die(); |
181 | 181 | } |
182 | 182 | |
183 | - /** |
|
184 | - * Function defined for PHP error message handling |
|
185 | - * |
|
186 | - * @param int $errno the type of error for example: E_USER_ERROR, E_USER_WARNING, etc. |
|
187 | - * @param string $errstr the error message |
|
188 | - * @param string $errfile the file where the error occurred |
|
189 | - * @param int $errline the line number where the error occurred |
|
190 | - * @codeCoverageIgnore |
|
191 | - * |
|
192 | - * @return boolean |
|
193 | - */ |
|
183 | + /** |
|
184 | + * Function defined for PHP error message handling |
|
185 | + * |
|
186 | + * @param int $errno the type of error for example: E_USER_ERROR, E_USER_WARNING, etc. |
|
187 | + * @param string $errstr the error message |
|
188 | + * @param string $errfile the file where the error occurred |
|
189 | + * @param int $errline the line number where the error occurred |
|
190 | + * @codeCoverageIgnore |
|
191 | + * |
|
192 | + * @return boolean |
|
193 | + */ |
|
194 | 194 | function fw_error_handler($errno, $errstr, $errfile, $errline) { |
195 | 195 | $isError = (((E_ERROR | E_COMPILE_ERROR | E_CORE_ERROR | E_USER_ERROR) & $errno) === $errno); |
196 | 196 | if ($isError) { |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | E_RECOVERABLE_ERROR => 'Catchable Fatal Error' |
214 | 214 | ); |
215 | 215 | if (isset($errorsType[$errno])) { |
216 | - $errorType = $errorsType[$errno]; |
|
216 | + $errorType = $errorsType[$errno]; |
|
217 | 217 | } |
218 | 218 | $errorText = 'An error is occurred in the file ' . $errfile . ' at line ' . $errline . ' raison : ' . $errstr; |
219 | 219 | if ((error_reporting() & $errno) !== $errno) { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | static $cfg; |
148 | 148 | if (empty($cfg)) { |
149 | 149 | $cfg[0] = & load_configurations(); |
150 | - if(! is_array($cfg[0])){ |
|
150 | + if (!is_array($cfg[0])) { |
|
151 | 151 | $cfg[0] = array(); |
152 | 152 | } |
153 | 153 | } |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | set_http_status_header(500); |
198 | 198 | } |
199 | 199 | $errorType = 'Error'; |
200 | - $errorsType = array ( |
|
200 | + $errorsType = array( |
|
201 | 201 | E_ERROR => 'Error', |
202 | 202 | E_WARNING => 'Warning', |
203 | 203 | E_PARSE => 'Parsing Error', |
@@ -89,10 +89,10 @@ |
||
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
92 | - * Set the value of the pagination query string |
|
93 | - * @param string $pQueryString the new value |
|
94 | - * @return object |
|
95 | - */ |
|
92 | + * Set the value of the pagination query string |
|
93 | + * @param string $pQueryString the new value |
|
94 | + * @return object |
|
95 | + */ |
|
96 | 96 | public function setPaginationQueryString($pQueryString) { |
97 | 97 | $this->paginationQueryString = $pQueryString; |
98 | 98 | return $this; |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * Construct new ApcCache instance |
35 | 35 | */ |
36 | - public function __construct() { |
|
36 | + public function __construct() { |
|
37 | 37 | parent::__construct(); |
38 | 38 | if (!$this->isSupported()) { |
39 | 39 | show_error('The cache for APC[u] driver is not available. Check if APC[u] extension is loaded and enabled.'); |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | public function set($key, $data, $ttl = 0) { |
80 | 80 | $expire = time() + $ttl; |
81 | 81 | $this->logger->debug('Setting cache data for key [' . $key . '], time to live [' . $ttl . '], ' |
82 | - . 'expire at [' . date('Y-m-d H:i:s', $expire) . ']'); |
|
82 | + . 'expire at [' . date('Y-m-d H:i:s', $expire) . ']'); |
|
83 | 83 | $result = apc_store($key, $data, $ttl); |
84 | 84 | if ($result === false) { |
85 | 85 | $this->logger->error('Can not save cache data for the key [' . $key . '], return false'); |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | 'mtime' => $cacheInfos['creation_time'], |
128 | 128 | 'expire' => $cacheInfos['creation_time'] + $cacheInfos['ttl'], |
129 | 129 | 'ttl' => $cacheInfos['ttl'] |
130 | - ); |
|
130 | + ); |
|
131 | 131 | } |
132 | 132 | $this->logger->info('This cache does not exists skipping'); |
133 | 133 | return false; |
@@ -108,13 +108,13 @@ discard block |
||
108 | 108 | public function set($key, $data, $ttl = 0) { |
109 | 109 | $expire = time() + $ttl; |
110 | 110 | $this->logger->debug('Setting cache data for key [' . $key . '], ' |
111 | - . 'time to live [' . $ttl . '], ' |
|
112 | - . 'expire at [' . date('Y-m-d H:i:s', $expire) . ']'); |
|
111 | + . 'time to live [' . $ttl . '], ' |
|
112 | + . 'expire at [' . date('Y-m-d H:i:s', $expire) . ']'); |
|
113 | 113 | $filePath = $this->getFilePath($key); |
114 | 114 | $handle = fopen($filePath, 'w'); |
115 | 115 | if (!is_resource($handle)) { |
116 | 116 | $this->logger->error('Can not open the file cache ' |
117 | - . '[' . $filePath . '] for the key [' . $key . '], return false'); |
|
117 | + . '[' . $filePath . '] for the key [' . $key . '], return false'); |
|
118 | 118 | return false; |
119 | 119 | } |
120 | 120 | flock($handle, LOCK_EX); // exclusive lock, will get released when the file is closed |
@@ -191,10 +191,10 @@ discard block |
||
191 | 191 | if ($data['expire'] > time()) { |
192 | 192 | $this->logger->info('This cache not yet expired return cache informations'); |
193 | 193 | return array( |
194 | - 'mtime' => $data['mtime'], |
|
195 | - 'expire' => $data['expire'], |
|
196 | - 'ttl' => $data['ttl'] |
|
197 | - ); |
|
194 | + 'mtime' => $data['mtime'], |
|
195 | + 'expire' => $data['expire'], |
|
196 | + 'ttl' => $data['ttl'] |
|
197 | + ); |
|
198 | 198 | } |
199 | 199 | $this->logger->info('This cache already expired return false'); |
200 | 200 | return false; |