@@ -31,7 +31,7 @@ |
||
31 | 31 | /** |
32 | 32 | * Call function if roteted catch any Exception. |
33 | 33 | */ |
34 | - public function catch(Closure $callable): self |
|
34 | + public function catch (Closure $callable): self |
|
35 | 35 | { |
36 | 36 | $this->catchCallable = $callable; |
37 | 37 |
@@ -55,9 +55,9 @@ |
||
55 | 55 | /** |
56 | 56 | * Old versions of log files are compressed. |
57 | 57 | */ |
58 | - public function compress(bool|int $level = true): self |
|
58 | + public function compress(bool | int $level = true): self |
|
59 | 59 | { |
60 | - $this->_compress = (bool)($level); |
|
60 | + $this->_compress = (bool) ($level); |
|
61 | 61 | $this->_compressLevel = is_numeric($level) |
62 | 62 | ? $level |
63 | 63 | : self::COMPRESS_DEFAULT_LEVEL; |