Completed
Push — master ( dc1cd9...e893e0 )
by Guido
02:44
created
src/Providers/FlystemProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Adapters/Flysystem/Component.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function local(string $name, string $path)
72 72
     {
73
-        $this->disk($name, function () use ($path) {
73
+        $this->disk($name, function() use ($path) {
74 74
             return new Local($path);
75 75
         });
76 76
 
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public function ftp(array $settings, string $name = 'ftp')
86 86
     {
87
-        $this->disk($name, function () use ($settings) {
87
+        $this->disk($name, function() use ($settings) {
88 88
             return new Ftp($settings);
89 89
         });
90 90
 
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function aws(string $bucket, array $settings, string $name = 'aws')
101 101
     {
102
-        $this->disk($name, function () use ($bucket, $settings) {
102
+        $this->disk($name, function() use ($bucket, $settings) {
103 103
 
104 104
             $client = S3Client::factory($settings);
105 105
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      */
118 118
     public function dropbox(string $accessToken, string $appSecret, string $name = 'dropbox')
119 119
     {
120
-        $this->disk($name, function () use ($accessToken, $appSecret) {
120
+        $this->disk($name, function() use ($accessToken, $appSecret) {
121 121
             return new DropboxAdapter(
122 122
                 new Client($accessToken, $appSecret)
123 123
             );
Please login to merge, or discard this patch.