1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 16:50:09 +01:00

Tweaked command descriptions.

This commit is contained in:
James Furey
2017-09-21 22:01:42 +10:00
parent 8331f05d8c
commit d62b7b27c1

View File

@@ -273,7 +273,7 @@
Configuration::updateKey('fallback', $path ?: getcwd()); Configuration::updateKey('fallback', $path ?: getcwd());
info('Your Valet fallback path has been updated to '.($path === null ? 'the current directory' : "[{$path}]").'.'); info('Your Valet fallback path has been updated to '.($path === null ? 'the current directory' : "[{$path}]").'.');
})->descriptions('Set the current working (or specified) directory as the fallback path for uncaught urls'); })->descriptions('Set the current working (or specified) directory as the fallback site path for uncaught urls');
/** /**
* Removes the fallback site path used by Valet. * Removes the fallback site path used by Valet.
@@ -282,7 +282,7 @@
Configuration::updateKey('fallback', null); Configuration::updateKey('fallback', null);
info('Your Valet fallback path has been removed.'); info('Your Valet fallback path has been removed.');
})->descriptions('Remove the fallback site path used for uncaught urls'); })->descriptions('Remove the fallback site path for uncaught urls');
} }
/** /**