1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-04 18:44:04 +00:00

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-08-23 12:46:00 +00:00
parent 2594b1960f
commit 63386a1ef0
5 changed files with 18 additions and 13 deletions

View file

@ -63,7 +63,7 @@ class Link extends Command
{
RemoveStorageSymlinksAction::handle(
$tenants,
afterLinkRemoval: fn($publicPath) => $this->info("The [$publicPath] link has been removed.")
afterLinkRemoval: fn ($publicPath) => $this->info("The [$publicPath] link has been removed.")
);
$this->info('The links have been removed.');
@ -79,7 +79,7 @@ class Link extends Command
$tenants,
$this->option('relative') ?? false,
$this->option('force') ?? false,
afterLinkCreation: fn($publicPath, $storagePath) => $this->info("The [$publicPath] link has been connected to [$storagePath].")
afterLinkCreation: fn ($publicPath, $storagePath) => $this->info("The [$publicPath] link has been connected to [$storagePath].")
);
$this->info('The links have been created.');