From 17f11f5ec7d876258f94a909137460d55b2fa043 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Tue, 9 Aug 2022 08:10:15 +0200 Subject: [PATCH] Change "symLinks" to "symlinks" --- src/Commands/Link.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Commands/Link.php b/src/Commands/Link.php index 7d726704..a2f7e83b 100644 --- a/src/Commands/Link.php +++ b/src/Commands/Link.php @@ -93,7 +93,7 @@ class Link extends Command }); return $tenants->map(function ($tenantKey) use ($suffixBase, $diskUrls, $disks) { - $symLinks = []; + $symlinks = []; foreach ($diskUrls as $disk => $publicPath) { $storagePath = str_replace('%storage_path%', $suffixBase . $tenantKey, $disks[$disk]); @@ -107,10 +107,10 @@ class Link extends Command mkdir($storagePath, 0777, true); } - $symLinks[] = [$publicPath => $storagePath]; + $symlinks[] = [$publicPath => $storagePath]; } - return $symLinks; + return $symlinks; })->flatten(1) ->mapWithKeys(fn ($item) => $item) ->all();