for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Modules\Core\Console\Installers\Scripts;
use Exception;
use Illuminate\Console\Command;
use Illuminate\Filesystem\Filesystem;
use Modules\Core\Console\Installers\SetupScript;
class ProtectInstaller implements SetupScript
{
/**
* @var Filesystem
*/
protected $finder;
* @param Filesystem $finder
public function __construct(Filesystem $finder)
$this->finder = $finder;
}
* Fire the install script
* @param Command $command
* @return mixed
* @throws Exception
public function fire(Command $command)
if ($this->finder->isFile('.env') && ! $command->option('force')) {
throw new Exception('Asgard has already been installed. You can already log into your administration.');