14 lines
95 B
PHP
14 lines
95 B
PHP
<?php
|
|
|
|
|
|
namespace HttpServer\IInterface;
|
|
|
|
|
|
interface Service
|
|
{
|
|
|
|
|
|
public function onInit();
|
|
|
|
}
|