AsgardCms/Core

View on GitHub
Console/Installers/SetupScript.php

Summary

Maintainability
A
0 mins
Test Coverage
<?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);
}