<?php

namespace DummyNamespace;

use DummyFullCommand;
use Illuminate\Queue\InteractsWithQueue;

class DummyClass
{
    /**
     * Create the command handler.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Handle the command.
     *
     * @param  DummyCommand  $command
     * @return void
     */
    public function handle(DummyCommand $command)
    {
        //
    }
}
