GrafiteInc/FormMaker

View on GitHub
src/Commands/MakeModalFormCommand.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Grafite\Forms\Commands;

class MakeModalFormCommand extends BaseCommand
{
    /**
     * The console command name.
     *
     * @var string
     */
    protected $name = 'make:modal-form';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Create a new modal form';

    /**
         * Get the stub file for the generator.
         *
         * @return string
         */
    protected function getStub()
    {
        return __DIR__ . '/stubs/modal-form.stub';
    }
}