Completed
Push — master ( c5ed6e...281aed )
by Raffael
01:42
created
src/Log/Adapter/File.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 /**
5 5
  * Micro
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * @param   Iterable $options
35 35
      * @return  AdapterInterface
36 36
      */
37
-    public function setOptions(?Iterable $config=null): AdapterInterface
37
+    public function setOptions(? Iterable $config = null) : AdapterInterface
38 38
     {
39 39
         parent::setOptions($config);
40 40
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function log(string $priority, string $message): bool
67 67
     {
68
-        if(!is_resource($this->resource)) {
68
+        if (!is_resource($this->resource)) {
69 69
             return false;
70 70
         }
71 71
 
Please login to merge, or discard this patch.