14 lines
91 B
PHP
14 lines
91 B
PHP
<?php
|
|
|
|
|
|
namespace Kiri;
|
|
|
|
|
|
interface IProxy
|
|
{
|
|
|
|
public function execute();
|
|
|
|
|
|
}
|