13 lines
102 B
PHP
13 lines
102 B
PHP
<?php
|
|
|
|
|
|
namespace HttpServer\IInterface;
|
|
|
|
|
|
interface After
|
|
{
|
|
|
|
public function onHandler($params);
|
|
|
|
}
|