Completed
Push — master ( 5b7c4e...9dae2c )
by Kamil
04:28
created
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.
src/Filesystem/FilesystemInterface.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,4 +3,5 @@
 block discarded – undo
3 3
 namespace Dazzle\Filesystem;
4 4
 
5 5
 interface FilesystemInterface extends DiskInterface
6
-{}
6
+{
7
+}
Please login to merge, or discard this patch.
src/Filesystem/Filesystem.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,4 +3,5 @@
 block discarded – undo
3 3
 namespace Dazzle\Filesystem;
4 4
 
5 5
 class Filesystem extends Disk implements FilesystemInterface
6
-{}
6
+{
7
+}
Please login to merge, or discard this patch.
src/Filesystem/DiskInterface.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\Driver\DriverInterface;
6 6
 
7 7
 interface DiskInterface extends DriverInterface
8
-{}
8
+{
9
+}
Please login to merge, or discard this patch.