first::echo_toto()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
nc 1
nop 0
1
<?php
2
namespace phoponent\app\component\custom\Clock\mvc\model;
3
use \phoponent\framework\traits\model;
4
5
class first extends \phoponent\app\component\core\Clock\mvc\model\first {
6
    use model;
7
    public function echo_toto() {
8
        echo 'toto';
9
    }
10
}