Dummy::onNewData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
namespace TestEntities;
3
4
class Dummy
5
{
6
7
    private $name;
8
9
    public function __construct($name=null)
10
    {
11
        $this->name = $name;
12
    }
13
14
    public function onNewData()
15
    {}
16
17
}
18