You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
309 B

10 years ago
  1. <?php namespace Majestic\App;
  2. /**
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage App
  7. * @since 10.07.12
  8. *
  9. */
  10. /**
  11. * @desc Starter cli point need implement iCli
  12. * @author Aleksandr Demidov
  13. */
  14. interface iCli
  15. {
  16. public function run();
  17. }