Passed
Pull Request — master (#5)
by
unknown
03:12
created
lib/custom/src/MW/Filesystem/Laravel.php 1 patch
Braces   +60 added lines, -24 removed lines patch added patch discarded remove patch
@@ -58,9 +58,12 @@  discard block
 block discarded – undo
58 58
 	 */
59 59
 	public function mkdir( $path )
60 60
 	{
61
-		try {
61
+		try
62
+		{
62 63
 			$this->fs->makeDirectory( $path );
63
-		} catch( \Exception $e ) {
64
+		}
65
+		catch( \Exception $e )
66
+		{
64 67
 			throw new Exception( $e->getMessage(), 0, $e );
65 68
 		}
66 69
 	}
@@ -75,9 +78,12 @@  discard block
 block discarded – undo
75 78
 	 */
76 79
 	public function rmdir( $path )
77 80
 	{
78
-		try {
81
+		try
82
+		{
79 83
 			$this->fs->deleteDirectory( $path );
80
-		} catch( \Exception $e ) {
84
+		}
85
+		catch( \Exception $e )
86
+		{
81 87
 			throw new Exception( $e->getMessage(), 0, $e );
82 88
 		}
83 89
 	}
@@ -94,9 +100,12 @@  discard block
 block discarded – undo
94 100
 	 */
95 101
 	public function scan( $path = null )
96 102
 	{
97
-		try {
103
+		try
104
+		{
98 105
 			return array_merge( $this->fs->directories( $path ), $this->fs->files( $path ) );
99
-		} catch( \Exception $e ) {
106
+		}
107
+		catch( \Exception $e )
108
+		{
100 109
 			throw new Exception( $e->getMessage(), 0, $e );
101 110
 		}
102 111
 	}
@@ -111,9 +120,12 @@  discard block
 block discarded – undo
111 120
 	 */
112 121
 	public function size( $path )
113 122
 	{
114
-		try {
123
+		try
124
+		{
115 125
 			return $this->fs->size( $path );
116
-		} catch( \Exception $e ) {
126
+		}
127
+		catch( \Exception $e )
128
+		{
117 129
 			throw new Exception( $e->getMessage(), 0, $e );
118 130
 		}
119 131
 	}
@@ -128,9 +140,12 @@  discard block
 block discarded – undo
128 140
 	 */
129 141
 	public function time( $path )
130 142
 	{
131
-		try {
143
+		try
144
+		{
132 145
 			return $this->fs->lastModified( $path );
133
-		} catch( \Exception $e ) {
146
+		}
147
+		catch( \Exception $e )
148
+		{
134 149
 			throw new Exception( $e->getMessage(), 0, $e );
135 150
 		}
136 151
 	}
@@ -145,9 +160,12 @@  discard block
 block discarded – undo
145 160
 	 */
146 161
 	public function rm( $path )
147 162
 	{
148
-		try {
163
+		try
164
+		{
149 165
 			$this->fs->delete( $path );
150
-		} catch( \Exception $e ) {
166
+		}
167
+		catch( \Exception $e )
168
+		{
151 169
 			throw new Exception( $e->getMessage(), 0, $e );
152 170
 		}
153 171
 	}
@@ -176,9 +194,12 @@  discard block
 block discarded – undo
176 194
 	 */
177 195
 	public function read( $path )
178 196
 	{
179
-		try {
197
+		try
198
+		{
180 199
 			return $this->fs->get( $path );
181
-		} catch( \Exception $e ) {
200
+		}
201
+		catch( \Exception $e )
202
+		{
182 203
 			throw new Exception( $e->getMessage(), 0, $e );
183 204
 		}
184 205
 	}
@@ -216,9 +237,12 @@  discard block
 block discarded – undo
216 237
 	 */
217 238
 	public function reads( $path )
218 239
 	{
219
-		try {
240
+		try
241
+		{
220 242
 			$content = $this->fs->get( $path );
221
-		} catch( \Exception $e ) {
243
+		}
244
+		catch( \Exception $e )
245
+		{
222 246
 			throw new Exception( $e->getMessage(), 0, $e );
223 247
 		}
224 248
 
@@ -250,9 +274,12 @@  discard block
 block discarded – undo
250 274
 	 */
251 275
 	public function write( $path, $content )
252 276
 	{
253
-		try {
277
+		try
278
+		{
254 279
 			$this->fs->put( $path, $content );
255
-		} catch( \Exception $e ) {
280
+		}
281
+		catch( \Exception $e )
282
+		{
256 283
 			throw new Exception( $e->getMessage(), 0, $e );
257 284
 		}
258 285
 	}
@@ -295,9 +322,12 @@  discard block
 block discarded – undo
295 322
 			throw new Exception( $error['message'] );
296 323
 		}
297 324
 
298
-		try {
325
+		try
326
+		{
299 327
 			$this->fs->put( $path, $content );
300
-		} catch( \Exception $e ) {
328
+		}
329
+		catch( \Exception $e )
330
+		{
301 331
 			throw new Exception( $e->getMessage(), 0, $e );
302 332
 		}
303 333
 	}
@@ -313,9 +343,12 @@  discard block
 block discarded – undo
313 343
 	 */
314 344
 	public function move( $from, $to )
315 345
 	{
316
-		try {
346
+		try
347
+		{
317 348
 			$this->fs->move( $from, $to );
318
-		} catch( \Exception $e ) {
349
+		}
350
+		catch( \Exception $e )
351
+		{
319 352
 			throw new Exception( $e->getMessage(), 0, $e );
320 353
 		}
321 354
 	}
@@ -331,9 +364,12 @@  discard block
 block discarded – undo
331 364
 	 */
332 365
 	public function copy( $from, $to )
333 366
 	{
334
-		try {
367
+		try
368
+		{
335 369
 			$this->fs->copy( $from, $to );
336
-		} catch( \Exception $e ) {
370
+		}
371
+		catch( \Exception $e )
372
+		{
337 373
 			throw new Exception( $e->getMessage(), 0, $e );
338 374
 		}
339 375
 	}
Please login to merge, or discard this patch.