SourceTableNode   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setWhere() 0 5 1
A getWhere() 0 4 1
1
<?php
2
3
namespace Graze\DataDb;
4
5
class SourceTableNode extends TableNode implements SourceTableNodeInterface
6
{
7
    /** @var string */
8
    protected $where;
9
10
    /**
11
     * @param string $where
12
     *
13
     * @return static
14
     */
15
    public function setWhere($where)
16
    {
17
        $this->where = $where;
18
        return $this;
19
    }
20
21
    /**
22
     * @return string
23
     */
24
    public function getWhere()
25
    {
26
        return $this->where;
27
    }
28
}
29