@@ -212,11 +212,11 @@ discard block |
||
212 | 212 | $this->printSkipText('A driver could not be initialized due to missing requirement: ' . $exception->getMessage()); |
213 | 213 | } else { |
214 | 214 | $this->printFailText(sprintf( |
215 | - 'Uncaught exception "%s" in "%s" line %d with message: "%s"', |
|
216 | - \get_class($exception), |
|
217 | - $exception->getFile(), |
|
218 | - $exception->getLine(), |
|
219 | - $exception->getMessage() |
|
215 | + 'Uncaught exception "%s" in "%s" line %d with message: "%s"', |
|
216 | + \get_class($exception), |
|
217 | + $exception->getFile(), |
|
218 | + $exception->getLine(), |
|
219 | + $exception->getMessage() |
|
220 | 220 | )); |
221 | 221 | } |
222 | 222 | $this->terminateTest(); |
@@ -263,17 +263,17 @@ discard block |
||
263 | 263 | |
264 | 264 | if ($errorType === '[FATAL ERROR]') { |
265 | 265 | $this->printFailText(sprintf( |
266 | - "A critical error has been caught: \"%s\" in %s line %d", |
|
267 | - "$errorType $errstr", |
|
268 | - $errfile, |
|
269 | - $errline |
|
266 | + "A critical error has been caught: \"%s\" in %s line %d", |
|
267 | + "$errorType $errstr", |
|
268 | + $errfile, |
|
269 | + $errline |
|
270 | 270 | )); |
271 | 271 | } else { |
272 | 272 | $this->printDebugText(sprintf( |
273 | - "A non-critical error has been caught: \"%s\" in %s line %d", |
|
274 | - "$errorType $errstr", |
|
275 | - $errfile, |
|
276 | - $errline |
|
273 | + "A non-critical error has been caught: \"%s\" in %s line %d", |
|
274 | + "$errorType $errstr", |
|
275 | + $errfile, |
|
276 | + $errline |
|
277 | 277 | )); |
278 | 278 | } |
279 | 279 | } |
@@ -11,7 +11,7 @@ |
||
11 | 11 | * @author Georges.L (Geolim4) <[email protected]> |
12 | 12 | * |
13 | 13 | */ |
14 | -declare(strict_types=1); |
|
14 | +declare(strict_types = 1); |
|
15 | 15 | |
16 | 16 | namespace Phpfastcache\Helper; |
17 | 17 |