RisolutoControllerInterface
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 4
Bugs 3 Features 2
Metric Value
c 4
b 3
f 2
dl 0
loc 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
init() 0 1 ?
play() 0 1 ?
error() 0 1 ?
clean() 0 1 ?
1
<?php
2
/**
3
 * RisolutoControllerInterface
4
 *
5
 * ユーザアプリ向けコントローラ用インタフェース定義
6
 *
7
 * @package           risoluto
8
 * @author            Risoluto Developers
9
 * @license           http://opensource.org/licenses/bsd-license.php new BSD license
10
 * @copyright     (C) 2008-2015 Risoluto Developers / All Rights Reserved.
11
 */
12
13
//------------------------------------------------------//
14
// 名前空間の定義
15
//------------------------------------------------------//
16
namespace Risoluto;
17
18
interface RisolutoControllerInterface
19
{
20
    public function init( array $param );
21
22
    public function play();
23
24
    public function error( \Exception $errobj );
25
26
    public function clean();
27
}
28