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