<?php namespace {{namespace}};

use {{rootNamespace}}Commands\Command;

use Illuminate\Contracts\Bus\SelfHandling;

class {{class}} extends Command implements SelfHandling {

	/**
	 * Create a new command instance.
	 *
	 * @return void
	 */
	public function __construct()
	{
		//
	}

	/**
	 * Execute the command.
	 *
	 * @return void
	 */
	public function handle()
	{
		//
	}

}
