Passed
Push — master ( d64862...9f4696 )
by alpha
13:35
created
src/Macros/AppendFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function macro(): Closure
26 26
     {
27
-        return function (string $path, string $content, int $position = 0, array $options = []) {
27
+        return function(string $path, string $content, int $position = 0, array $options = []) {
28 28
             try {
29 29
                 /**
30 30
                  * @var FilesystemAdapter $this
Please login to merge, or discard this patch.
src/Macros/AppendObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      */
25 25
     public function macro(): Closure
26 26
     {
27
-        return function (string $path, string $content, int $position = 0, array $options = []) {
27
+        return function(string $path, string $content, int $position = 0, array $options = []) {
28 28
             try {
29 29
                 /**
30 30
                  * @var FilesystemAdapter $this
Please login to merge, or discard this patch.
src/AliyunServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         }
40 40
 
41 41
         $config->set("filesystems.disks.oss", array_merge(
42
-            require __DIR__ . "/../config/config.php",
42
+            require __DIR__."/../config/config.php",
43 43
             $config->get("filesystems.disks.oss", [])
44 44
         ));
45 45
     }
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function boot()
51 51
     {
52 52
         $this->app->make("filesystem")
53
-            ->extend("oss", function (Application $app, array $config) {
53
+            ->extend("oss", function(Application $app, array $config) {
54 54
                 $adapter = (new AliyunFactory())->createAdapter($config);
55 55
                 $driver = new Filesystem($adapter);
56 56
                 $filesystem = new FilesystemAdapter($driver, $adapter, $config);
Please login to merge, or discard this patch.