Skip to content

Commit

Permalink
Remove acrylic from command
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuradiyana committed Jan 16, 2019
1 parent d07c471 commit dd534b5
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions cli/valet.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,13 @@
$app->command('install', function () {
Nginx::stop();
PhpFpm::stop();
Acrylic::stop();

Configuration::install();

Nginx::install();
PhpFpm::install();

$tld = Configuration::read()['tld'];
Acrylic::install($tld);

Nginx::restart();

Expand All @@ -81,8 +79,6 @@
$oldTld = Configuration::read()['tld'];
$tld = trim($tld, '.');

Acrylic::updateTld($tld);

Configuration::updateKey('tld', $tld);

Site::resecureForNewTld($oldTld, $tld);
Expand Down Expand Up @@ -228,8 +224,6 @@

Nginx::restart();

Acrylic::restart();

info('Valet services have been started.');
})->descriptions('Start the Valet services');

Expand All @@ -241,8 +235,6 @@

Nginx::restart();

Acrylic::restart();

info('Valet services have been restarted.');
})->descriptions('Restart the Valet services');

Expand All @@ -254,8 +246,6 @@

Nginx::stop();

Acrylic::stop();

info('Valet services have been stopped.');
})->descriptions('Stop the Valet services');

Expand All @@ -267,8 +257,6 @@

PhpFpm::uninstall();

Acrylic::uninstall();

info('Valet has been uninstalled.');
})->descriptions('Uninstall the Valet services');

Expand Down

0 comments on commit dd534b5

Please sign in to comment.