1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 00:20:08 +01:00

rename serve to park

This commit is contained in:
Taylor Otwell
2016-05-04 16:09:45 -05:00
parent df43ab41f5
commit f2ca1eb6f9

View File

@@ -36,10 +36,10 @@
/**
* Add the current working directory to the paths configuration.
*/
$app->command('serve', function ($output) {
$app->command('park', function ($output) {
Valet\Configuration::addPath(getcwd());
$output->writeln("<info>This directory has been added to Valet's served paths.</info>");
$output->writeln("<info>This directory has been added to Valet's paths.</info>");
});
/**