Passed
Push — develop ( 191370...e38659 )
by nguereza
19:01
created
src/Adapter/Local/Directory.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 {
61 61
 
62 62
     /**
63
-    * {@inheritdoc}
64
-    */
63
+     * {@inheritdoc}
64
+     */
65 65
     public function copyTo($directory, int $mode = 0775)
66 66
     {
67 67
         if (!$this->exists()) {
@@ -95,8 +95,8 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-    * {@inheritdoc}
99
-    */
98
+     * {@inheritdoc}
99
+     */
100 100
     public function create(string $name, int $mode = 0775)
101 101
     {
102 102
         if (!file_exists($this->path . DIRECTORY_SEPARATOR . $name)) {
@@ -111,8 +111,8 @@  discard block
 block discarded – undo
111 111
     }
112 112
 
113 113
     /**
114
-    * {@inheritdoc}
115
-    */
114
+     * {@inheritdoc}
115
+     */
116 116
     public function createFile(
117 117
         string $name,
118 118
         string $content = '',
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
     }
128 128
 
129 129
     /**
130
-    * {@inheritdoc}
131
-    */
130
+     * {@inheritdoc}
131
+     */
132 132
     public function delete(): self
133 133
     {
134 134
         if (!$this->exists()) {
@@ -144,16 +144,16 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-    * {@inheritdoc}
148
-    */
147
+     * {@inheritdoc}
148
+     */
149 149
     public function getType(): string
150 150
     {
151 151
         return 'dir';
152 152
     }
153 153
 
154 154
     /**
155
-    * {@inheritdoc}
156
-    */
155
+     * {@inheritdoc}
156
+     */
157 157
     public function read(int $type = self::ALL): array
158 158
     {
159 159
         $files = [
@@ -196,8 +196,8 @@  discard block
 block discarded – undo
196 196
     }
197 197
 
198 198
     /**
199
-    * {@inheritdoc}
200
-    */
199
+     * {@inheritdoc}
200
+     */
201 201
     public function scan(): array
202 202
     {
203 203
         $list = [];
Please login to merge, or discard this patch.