@@ -39,7 +39,7 @@ |
||
| 39 | 39 | public function getDefinitions() |
| 40 | 40 | { |
| 41 | 41 | return [ |
| 42 | - FilesystemInterface::class => function () { |
|
| 42 | + FilesystemInterface::class => function() { |
|
| 43 | 43 | |
| 44 | 44 | $manager = new MountManager(); |
| 45 | 45 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | public function local(string $name, string $path) |
| 73 | 73 | { |
| 74 | - $this->disk($name, function () use ($path) { |
|
| 74 | + $this->disk($name, function() use ($path) { |
|
| 75 | 75 | return new Local($path); |
| 76 | 76 | }); |
| 77 | 77 | |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | */ |
| 85 | 85 | public function ftp(array $settings) |
| 86 | 86 | { |
| 87 | - $this->disk('ftp', function () use ($settings) { |
|
| 87 | + $this->disk('ftp', function() use ($settings) { |
|
| 88 | 88 | return new Ftp($settings); |
| 89 | 89 | }); |
| 90 | 90 | |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | */ |
| 98 | 98 | public function aws(string $bucket, array $settings) |
| 99 | 99 | { |
| 100 | - $this->disk('aws', function () use ($bucket, $settings) { |
|
| 100 | + $this->disk('aws', function() use ($bucket, $settings) { |
|
| 101 | 101 | |
| 102 | 102 | $client = S3Client::factory($settings); |
| 103 | 103 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public function dropbox(string $accessToken, string $appSecret) |
| 116 | 116 | { |
| 117 | - $this->disk('dropbox', function () use ($accessToken, $appSecret) { |
|
| 117 | + $this->disk('dropbox', function() use ($accessToken, $appSecret) { |
|
| 118 | 118 | return new DropboxAdapter( |
| 119 | 119 | new Client($accessToken, $appSecret) |
| 120 | 120 | ); |