Completed
Pull Request — master (#1)
by Kamil
02:34
created
src/Filesystem/FilesystemInterface.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,4 +5,5 @@
 block discarded – undo
5 5
 use Dazzle\Filesystem\Node\NodeInterface;
6 6
 
7 7
 interface FilesystemInterface extends NodeInterface
8
-{}
8
+{
9
+}
Please login to merge, or discard this patch.
src/Filesystem/Driver/DriverEio.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -139,7 +139,8 @@  discard block
 block discarded – undo
139 139
 
140 140
     protected function register()
141 141
     {
142
-        if ($this->active) {
142
+        if ($this->active)
143
+        {
143 144
             return;
144 145
         }
145 146
 
@@ -149,7 +150,8 @@  discard block
 block discarded – undo
149 150
 
150 151
     protected function unregister()
151 152
     {
152
-        if (!$this->active) {
153
+        if (!$this->active)
154
+        {
153 155
             return;
154 156
         }
155 157
 
Please login to merge, or discard this patch.