11 lines
196 B
PHP
11 lines
196 B
PHP
<?php
|
|
|
|
namespace Lean\Event;
|
|
|
|
use Lean\Routing;
|
|
use Notes\Route\Attribute\Method\Route;
|
|
|
|
interface RoutingCompileRoutes {
|
|
public function execute(Routing $routing, Route $attribute) : void;
|
|
}
|