Exception   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A className() 0 4 1
1
<?php
2
/**
3
 * 例外ベースクラス
4
 * @author AIZAWA Hina <[email protected]>
5
 * @copyright 2015 by AIZAWA Hina <[email protected]>
6
 * @license https://github.com/fetus-hina/docomo-dialogue/blob/master/LICENSE MIT
7
 * @since 0.1.0
8
 */
9
10
namespace jp3cki\docomoDialogue;
11
12
/**
13
 * 例外ベースクラス
14
 */
15
class Exception extends \Exception
16
{
17
    /**
18
     * クラス名(FQCN)を取得
19
     *
20
     * return string
21
     */
22
    public static function className()
23
    {
24
        return get_called_class();
25
    }
26
}
27