SampleLibsInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4

1 Method

Rating   Name   Duplication   Size   Complexity  
sampleMethod() 0 1 ?
1
<?php
2
/**
3
 * SampleLibsInterface
4
 *
5
 * ユーザ定義のInterfaceサンプル
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 RisolutoUserLibs;
17
18
interface SampleLibsInterface
19
{
20
    public static function sampleMethod();
21
}