<?php

declare(strict_types=1);

namespace Plugins;

use Feast\Plugin;

class {name} extends Plugin
{

    public function preDispatch(): void
    {
        /** @todo create Pre-Dispatch */
    }

    public function postDispatch(): void
    {
        /** @todo create Post-Dispatch */
    }

}
