17 lines
205 B
PHP
17 lines
205 B
PHP
<?php
|
|
|
|
namespace Modules\AnnoRoute;
|
|
|
|
interface AnnoRoute
|
|
{
|
|
|
|
/**
|
|
* register route
|
|
*
|
|
* @param string $path
|
|
* @return void
|
|
*/
|
|
public function register(string $path): void;
|
|
|
|
}
|