GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

AbstractRowDecorator   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getRow() 0 4 1
A setRow() 0 5 1
A getActualRow() 0 4 1
1
<?php
2
/**
3
 * ZfTable ( Module for Zend Framework 2)
4
 *
5
 * @copyright Copyright (c) 2013 Piotr Duda [email protected]
6
 * @license   MIT License
7
 */
8
9
10
namespace ZfTable\Decorator\Row;
11
12
use ZfTable\Decorator\AbstractDecorator;
13
use ZfTable\Decorator\DataAccessInterface;
14
15
abstract class AbstractRowDecorator extends AbstractDecorator implements DataAccessInterface
16
{
17
18
    /**
19
     * Row object
20
     * @var \ZfTable\Row
21
     */
22
    protected $row;
23
24
    /**
25
     *
26
     * @return \ZfTable\Row
27
     */
28
    public function getRow()
29
    {
30
        return $this->row;
31
    }
32
33
    /**
34
     *
35
     * @param \ZfTable\Row $row
36
     * @return $this
37
     */
38
    public function setRow($row)
39
    {
40
        $this->row = $row;
41
        return $this;
42
    }
43
44
    /**
45
     * Get actual row
46
     * @return array
47
     */
48
    public function getActualRow()
49
    {
50
        return $this->getRow()->getActualRow();
51
    }
52
}
53