Completed
Push — master ( a5d74c...1b9ec3 )
by Patrick
02:10
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
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
             );
Please login to merge, or discard this patch.