<?php

namespace DummyNamespace;

use DummyRootNamespaceCommands\Command;
use Illuminate\Contracts\Bus\SelfHandling;

class DummyClass extends Command implements SelfHandling
{
    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

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