Passed
Push — master ( 2ab734...b159af )
by Cesar
13:26 queued 11:09
created
src/ErrorHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Rotation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.