Passed
Push — develop ( d80990...7b5a91 )
by nguereza
24:22 queued 22:43
created
src/Adapter/Local/AbstractLocal.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
     */
173 173
     public function getMtime(): int
174 174
     {
175
-        $time  = filemtime($this->path);
175
+        $time = filemtime($this->path);
176 176
         return $time !== false ? $time : -1;
177 177
     }
178 178
 
Please login to merge, or discard this patch.
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
     /**
135
-    * {@inheritdoc}
136
-    */
135
+     * {@inheritdoc}
136
+     */
137 137
     public function moveTo($directory)
138 138
     {
139 139
         $dest = $this->copyTo($directory);
@@ -144,8 +144,8 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
     /**
147
-    * {@inheritdoc}
148
-    */
147
+     * {@inheritdoc}
148
+     */
149 149
     public function chmod(int $mode)
150 150
     {
151 151
         chmod($this->path, $mode);
@@ -154,24 +154,24 @@  discard block
 block discarded – undo
154 154
     }
155 155
 
156 156
     /**
157
-    * {@inheritdoc}
158
-    */
157
+     * {@inheritdoc}
158
+     */
159 159
     public function exists(): bool
160 160
     {
161 161
         return $this->isExists($this->path);
162 162
     }
163 163
 
164 164
     /**
165
-    * {@inheritdoc}
166
-    */
165
+     * {@inheritdoc}
166
+     */
167 167
     public function getLocation(): string
168 168
     {
169 169
         return dirname($this->path);
170 170
     }
171 171
 
172 172
     /**
173
-    * {@inheritdoc}
174
-    */
173
+     * {@inheritdoc}
174
+     */
175 175
     public function getMtime(): int
176 176
     {
177 177
         $time  = filemtime($this->path);
@@ -179,16 +179,16 @@  discard block
 block discarded – undo
179 179
     }
180 180
 
181 181
     /**
182
-    * {@inheritdoc}
183
-    */
182
+     * {@inheritdoc}
183
+     */
184 184
     public function getName(): string
185 185
     {
186 186
         return basename($this->path);
187 187
     }
188 188
 
189 189
     /**
190
-    * {@inheritdoc}
191
-    */
190
+     * {@inheritdoc}
191
+     */
192 192
     public function getPermission(): string
193 193
     {
194 194
         $permission = fileperms($this->path);
@@ -202,8 +202,8 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-    * {@inheritdoc}
206
-    */
205
+     * {@inheritdoc}
206
+     */
207 207
     public function getSize(): int
208 208
     {
209 209
         $size = filesize($this->path);
@@ -211,40 +211,40 @@  discard block
 block discarded – undo
211 211
     }
212 212
 
213 213
     /**
214
-    * {@inheritdoc}
215
-    */
214
+     * {@inheritdoc}
215
+     */
216 216
     public function isDir(): bool
217 217
     {
218 218
         return $this->getType() === 'dir';
219 219
     }
220 220
 
221 221
     /**
222
-    * {@inheritdoc}
223
-    */
222
+     * {@inheritdoc}
223
+     */
224 224
     public function isFile(): bool
225 225
     {
226 226
         return $this->getType() === 'file';
227 227
     }
228 228
 
229 229
     /**
230
-    * {@inheritdoc}
231
-    */
230
+     * {@inheritdoc}
231
+     */
232 232
     public function isReadable(): bool
233 233
     {
234 234
         return is_readable($this->path);
235 235
     }
236 236
 
237 237
     /**
238
-    * {@inheritdoc}
239
-    */
238
+     * {@inheritdoc}
239
+     */
240 240
     public function isWritable(): bool
241 241
     {
242 242
         return is_writable($this->path);
243 243
     }
244 244
 
245 245
     /**
246
-    * {@inheritdoc}
247
-    */
246
+     * {@inheritdoc}
247
+     */
248 248
     public function rename(string $newPath)
249 249
     {
250 250
         $normalizedNewPath = rtrim(Path::normalizePathDS($newPath), '\\/');
@@ -263,8 +263,8 @@  discard block
 block discarded – undo
263 263
     }
264 264
 
265 265
     /**
266
-    * {@inheritdoc}
267
-    */
266
+     * {@inheritdoc}
267
+     */
268 268
     public function touch(int $time)
269 269
     {
270 270
         touch($this->path, $time);
Please login to merge, or discard this patch.
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * Class AbstractLocal
58 58
  * @package Platine\Filesystem\Adapter\Local
59 59
  */
60
-abstract class AbstractLocal implements FilesystemInterface
61
-{
60
+abstract class AbstractLocal implements FilesystemInterface {
62 61
     /**
63 62
      * The adapter instance
64 63
      * @var AdapterInterface
@@ -82,8 +81,7 @@  discard block
 block discarded – undo
82 81
      * @param string $path
83 82
      * @param AdapterInterface $adapter
84 83
      */
85
-    public function __construct(string $path, AdapterInterface $adapter)
86
-    {
84
+    public function __construct(string $path, AdapterInterface $adapter) {
87 85
         $this->adapter = $adapter;
88 86
         $this->setPath($path);
89 87
     }
@@ -133,8 +131,7 @@  discard block
 block discarded – undo
133 131
     /**
134 132
     * {@inheritdoc}
135 133
     */
136
-    public function moveTo($directory)
137
-    {
134
+    public function moveTo($directory) {
138 135
         $dest = $this->copyTo($directory);
139 136
         $dest->touch($this->getMtime());
140 137
         $this->delete();
@@ -145,8 +142,7 @@  discard block
 block discarded – undo
145 142
     /**
146 143
     * {@inheritdoc}
147 144
     */
148
-    public function chmod(int $mode)
149
-    {
145
+    public function chmod(int $mode) {
150 146
         chmod($this->path, $mode);
151 147
 
152 148
         return $this;
@@ -244,8 +240,7 @@  discard block
 block discarded – undo
244 240
     /**
245 241
     * {@inheritdoc}
246 242
     */
247
-    public function rename(string $newPath)
248
-    {
243
+    public function rename(string $newPath) {
249 244
         $normalizedNewPath = rtrim(Path::normalizePathDS($newPath), '\\/');
250 245
         if (strpos($normalizedNewPath, DIRECTORY_SEPARATOR) === false) {
251 246
             $normalizedNewPath = dirname($this->originalPath)
@@ -264,8 +259,7 @@  discard block
 block discarded – undo
264 259
     /**
265 260
     * {@inheritdoc}
266 261
     */
267
-    public function touch(int $time)
268
-    {
262
+    public function touch(int $time) {
269 263
         touch($this->path, $time);
270 264
 
271 265
         return $this;
Please login to merge, or discard this patch.
src/Adapter/Local/Exception/FilesystemException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,6 +39,5 @@
 block discarded – undo
39 39
  * Class FilesystemException
40 40
  * @package Platine\Filesystem\Adapter\Local\Exception
41 41
  */
42
-class FilesystemException extends Exception
43
-{
42
+class FilesystemException extends Exception {
44 43
 }
Please login to merge, or discard this patch.
src/Adapter/Local/Exception/NotFoundException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,6 +37,5 @@
 block discarded – undo
37 37
  * Class NotFoundException
38 38
  * @package Platine\Filesystem\Adapter\Local\Exception
39 39
  */
40
-class NotFoundException extends FilesystemException
41
-{
40
+class NotFoundException extends FilesystemException {
42 41
 }
Please login to merge, or discard this patch.
src/Adapter/Local/Directory.php 2 patches
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -56,14 +56,12 @@  discard block
 block discarded – undo
56 56
  * Class Directory
57 57
  * @package Platine\Filesystem\Adapter\Local
58 58
  */
59
-class Directory extends AbstractLocal implements DirectoryInterface
60
-{
59
+class Directory extends AbstractLocal implements DirectoryInterface {
61 60
 
62 61
     /**
63 62
     * {@inheritdoc}
64 63
     */
65
-    public function copyTo($directory, int $mode = 0775)
66
-    {
64
+    public function copyTo($directory, int $mode = 0775) {
67 65
         if (!$this->exists()) {
68 66
             throw new NotFoundException(sprintf(
69 67
                 'Source path [%s] not found',
@@ -97,8 +95,7 @@  discard block
 block discarded – undo
97 95
     /**
98 96
     * {@inheritdoc}
99 97
     */
100
-    public function create(string $name, int $mode = 0775, bool $recursive = false)
101
-    {
98
+    public function create(string $name, int $mode = 0775, bool $recursive = false) {
102 99
         if (!file_exists($this->path . DIRECTORY_SEPARATOR . $name)) {
103 100
             mkdir($this->path . DIRECTORY_SEPARATOR . $name, $mode, $recursive);
104 101
         } else {
Please login to merge, or discard this patch.
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
 class Directory extends AbstractLocal implements DirectoryInterface
60 60
 {
61 61
     /**
62
-    * {@inheritdoc}
63
-    */
62
+     * {@inheritdoc}
63
+     */
64 64
     public function copyTo($directory, int $mode = 0775)
65 65
     {
66 66
         if (!$this->exists()) {
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-    * {@inheritdoc}
98
-    */
97
+     * {@inheritdoc}
98
+     */
99 99
     public function create(string $name, int $mode = 0775, bool $recursive = false)
100 100
     {
101 101
         if (!file_exists($this->path . DIRECTORY_SEPARATOR . $name)) {
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
     }
111 111
 
112 112
     /**
113
-    * {@inheritdoc}
114
-    */
113
+     * {@inheritdoc}
114
+     */
115 115
     public function createFile(
116 116
         string $name,
117 117
         string $content = '',
@@ -126,8 +126,8 @@  discard block
 block discarded – undo
126 126
     }
127 127
 
128 128
     /**
129
-    * {@inheritdoc}
130
-    */
129
+     * {@inheritdoc}
130
+     */
131 131
     public function delete(): self
132 132
     {
133 133
         if (!$this->exists()) {
@@ -143,16 +143,16 @@  discard block
 block discarded – undo
143 143
     }
144 144
 
145 145
     /**
146
-    * {@inheritdoc}
147
-    */
146
+     * {@inheritdoc}
147
+     */
148 148
     public function getType(): string
149 149
     {
150 150
         return 'dir';
151 151
     }
152 152
 
153 153
     /**
154
-    * {@inheritdoc}
155
-    */
154
+     * {@inheritdoc}
155
+     */
156 156
     public function read(int $type = self::ALL): array
157 157
     {
158 158
         $files = [
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
     }
196 196
 
197 197
     /**
198
-    * {@inheritdoc}
199
-    */
198
+     * {@inheritdoc}
199
+     */
200 200
     public function scan(): array
201 201
     {
202 202
         $list = [];
Please login to merge, or discard this patch.
src/Adapter/Local/LocalAdapter.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -88,24 +88,24 @@  discard block
 block discarded – undo
88 88
 
89 89
 
90 90
     /**
91
-    * {@inheritdoc}
92
-    */
91
+     * {@inheritdoc}
92
+     */
93 93
     public function directory(string $path = ''): DirectoryInterface
94 94
     {
95 95
         return new Directory($path, $this);
96 96
     }
97 97
 
98 98
     /**
99
-    * {@inheritdoc}
100
-    */
99
+     * {@inheritdoc}
100
+     */
101 101
     public function file(string $path = ''): FileInterface
102 102
     {
103 103
         return new File($path, $this);
104 104
     }
105 105
 
106 106
     /**
107
-    * {@inheritdoc}
108
-    */
107
+     * {@inheritdoc}
108
+     */
109 109
     public function get(string $path)
110 110
     {
111 111
         $absolutePath = $this->getAbsolutePath($path);
@@ -122,8 +122,8 @@  discard block
 block discarded – undo
122 122
     }
123 123
 
124 124
     /**
125
-    * {@inheritdoc}
126
-    */
125
+     * {@inheritdoc}
126
+     */
127 127
     public function getAbsolutePath(string $path): string
128 128
     {
129 129
         $normalizedPath = Path::normalizePathDS($path);
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@  discard block
 block discarded – undo
57 57
  * Class LocalAdpater
58 58
  * @package Platine\Filesystem\Adapter\Local
59 59
  */
60
-class LocalAdapter implements AdapterInterface
61
-{
60
+class LocalAdapter implements AdapterInterface {
62 61
     /**
63 62
      * The root directory
64 63
      * @var string
@@ -69,8 +68,7 @@  discard block
 block discarded – undo
69 68
      * Create new instance
70 69
      * @param string $root
71 70
      */
72
-    public function __construct(string $root = '')
73
-    {
71
+    public function __construct(string $root = '') {
74 72
         if ($root !== '') {
75 73
             $root = Path::normalizePathDS($root, true);
76 74
 
@@ -105,8 +103,7 @@  discard block
 block discarded – undo
105 103
     /**
106 104
     * {@inheritdoc}
107 105
     */
108
-    public function get(string $path)
109
-    {
106
+    public function get(string $path) {
110 107
         $absolutePath = $this->getAbsolutePath($path);
111 108
 
112 109
         if (is_file($absolutePath)) {
Please login to merge, or discard this patch.
src/Filesystem.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * Class Filesystem
55 55
  * @package Platine\Filesystem
56 56
  */
57
-class Filesystem
58
-{
57
+class Filesystem {
59 58
     /**
60 59
      * The adapter instance
61 60
      * @var AdapterInterface
@@ -66,8 +65,7 @@  discard block
 block discarded – undo
66 65
      * Create new instance
67 66
      * @param AdapterInterface|null $adapter
68 67
      */
69
-    public function __construct(?AdapterInterface $adapter = null)
70
-    {
68
+    public function __construct(?AdapterInterface $adapter = null) {
71 69
         $this->adapter = $adapter ?? new LocalAdapter();
72 70
     }
73 71
 
@@ -85,8 +83,7 @@  discard block
 block discarded – undo
85 83
      * @param string $path
86 84
      * @return FileInterface|DirectoryInterface|null
87 85
      */
88
-    public function get(string $path)
89
-    {
86
+    public function get(string $path) {
90 87
         return $this->adapter->get($path);
91 88
     }
92 89
 
Please login to merge, or discard this patch.
src/FilesystemInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,8 +53,7 @@
 block discarded – undo
53 53
  * Class FilesystemInterface
54 54
  * @package Platine\Filesystem
55 55
  */
56
-interface FilesystemInterface
57
-{
56
+interface FilesystemInterface {
58 57
     /**
59 58
      * Whether the file system is a file
60 59
      * @return bool
Please login to merge, or discard this patch.
src/FileInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
51 51
  * Class FileInterface
52 52
  * @package Platine\Filesystem
53 53
  */
54
-interface FileInterface extends FilesystemInterface
55
-{
54
+interface FileInterface extends FilesystemInterface {
56 55
     /**
57 56
      * Create new file
58 57
      * @param string $path
Please login to merge, or discard this patch.
src/Adapter/Local/File.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
 class File extends AbstractLocal implements FileInterface
58 58
 {
59 59
     /**
60
-    * {@inheritdoc}
61
-    */
60
+     * {@inheritdoc}
61
+     */
62 62
     public function append(string $content): self
63 63
     {
64 64
         file_put_contents($this->path, $content, FILE_APPEND);
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
     }
68 68
 
69 69
     /**
70
-    * {@inheritdoc}
71
-    */
70
+     * {@inheritdoc}
71
+     */
72 72
     public function copyTo($directory, int $mode = 0775)
73 73
     {
74 74
         if (is_string($directory)) {
@@ -83,8 +83,8 @@  discard block
 block discarded – undo
83 83
     }
84 84
 
85 85
     /**
86
-    * {@inheritdoc}
87
-    */
86
+     * {@inheritdoc}
87
+     */
88 88
     public function create(string $path, string $content = '', int $mode = 0775)
89 89
     {
90 90
         $file = $this->adapter->file($path)->write($content);
@@ -94,8 +94,8 @@  discard block
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-    * {@inheritdoc}
98
-    */
97
+     * {@inheritdoc}
98
+     */
99 99
     public function delete(): self
100 100
     {
101 101
         unlink($this->path);
@@ -104,16 +104,16 @@  discard block
 block discarded – undo
104 104
     }
105 105
 
106 106
     /**
107
-    * {@inheritdoc}
108
-    */
107
+     * {@inheritdoc}
108
+     */
109 109
     public function getExtension(): string
110 110
     {
111 111
         return pathinfo($this->path, PATHINFO_EXTENSION);
112 112
     }
113 113
 
114 114
     /**
115
-    * {@inheritdoc}
116
-    */
115
+     * {@inheritdoc}
116
+     */
117 117
     public function getMime(): string
118 118
     {
119 119
         $mime = mime_content_type($this->path);
@@ -125,24 +125,24 @@  discard block
 block discarded – undo
125 125
     }
126 126
 
127 127
     /**
128
-    * {@inheritdoc}
129
-    */
128
+     * {@inheritdoc}
129
+     */
130 130
     public function getType(): string
131 131
     {
132 132
         return 'file';
133 133
     }
134 134
 
135 135
     /**
136
-    * {@inheritdoc}
137
-    */
136
+     * {@inheritdoc}
137
+     */
138 138
     public function read(): string
139 139
     {
140 140
         return (string) file_get_contents($this->path);
141 141
     }
142 142
 
143 143
     /**
144
-    * {@inheritdoc}
145
-    */
144
+     * {@inheritdoc}
145
+     */
146 146
     public function write(string $content): self
147 147
     {
148 148
         file_put_contents($this->path, $content);
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -54,8 +54,7 @@  discard block
 block discarded – undo
54 54
  * Class File
55 55
  * @package Platine\Filesystem\Adapter\Local
56 56
  */
57
-class File extends AbstractLocal implements FileInterface
58
-{
57
+class File extends AbstractLocal implements FileInterface {
59 58
     /**
60 59
     * {@inheritdoc}
61 60
     */
@@ -69,8 +68,7 @@  discard block
 block discarded – undo
69 68
     /**
70 69
     * {@inheritdoc}
71 70
     */
72
-    public function copyTo($directory, int $mode = 0775)
73
-    {
71
+    public function copyTo($directory, int $mode = 0775) {
74 72
         if (is_string($directory)) {
75 73
             $directory = $this->adapter->directory($directory);
76 74
         }
@@ -85,8 +83,7 @@  discard block
 block discarded – undo
85 83
     /**
86 84
     * {@inheritdoc}
87 85
     */
88
-    public function create(string $path, string $content = '', int $mode = 0775)
89
-    {
86
+    public function create(string $path, string $content = '', int $mode = 0775) {
90 87
         $file = $this->adapter->file($path)->write($content);
91 88
         $file->chmod($mode);
92 89
 
Please login to merge, or discard this patch.