Creating Commands
Creating Commands
Introduction
Getting Started
$ craft command HelloWorldCommand""" A HelloWorldCommand Command """
from cleo import Command
class HelloWorldCommand(Command):
"""
Description of command
command:name
{argument : description}
"""
def handle(self):
passAdding Our Command To Craft
Last updated