Skip to content
Snippets Groups Projects
ModuleInterface.php 171 B
Newer Older
<?php declare(strict_types=1);

namespace uib\ub\loadspeakr\modules;

interface ModuleInterface
{
    public function match($uri);
    public function execute($params);
}