Creating Commands
Introduction
Getting Started
$ python craft command Hello""" 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