Conditions | 3 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Modules\Core\Console\Installers\Scripts; |
||
29 | public function fire(Command $command) |
||
30 | { |
||
31 | if ($this->finder->isFile('.env') && ! $command->option('force')) { |
||
32 | throw new Exception('Asgard has already been installed. You can already log into your administration.'); |
||
33 | } |
||
34 | } |
||
35 | } |
||
36 |