<?php

namespace Modules\Core\Console\Installers;

use Illuminate\Console\Command;

interface SetupScript
{
    /**
     * Fire the install script
     * @param  Command $command
     * @return mixed
     */
    public function fire(Command $command);
}