Add CliController and iCli interface for cli applications.

This commit is contained in:
Alexander Demidov
2012-07-10 19:37:03 +04:00
parent e59e270476
commit 595c1b73eb
2 changed files with 77 additions and 0 deletions

18
app/iCli.php Normal file
View File

@ -0,0 +1,18 @@
<?php
/**
* @copyright NetMonsters <team@netmonsters.ru>
* @link http://netmonsters.ru
* @package Majestic
* @subpackage App
* @since 10.07.12
*
*/
/**
* @desc Starter cli point need implement iCli
* @author Aleksandr Demidov
*/
interface iCli
{
public function run();
}