Container   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 5
Bugs 4 Features 0
Metric Value
wmc 1
c 5
b 4
f 0
lcom 0
cbo 0
dl 0
loc 16
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getContent() 0 4 1
1
<?php
2
3
namespace PEIP\ABS\Base;
4
5
/*
6
 * This file is part of the PEIP package.
7
 * (c) 2009-2016 Timo Michna <timomichna/yahoo.de>
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
/**
14
 * PEIP\ABS\Base\Container
15
 * Basic abstract container class.
16
 *
17
 * @author Timo Michna <timomichna/yahoo.de>
18
 * @implements \PEIP\INF\Base\Container
19
 */
20
abstract class Container implements \PEIP\INF\Base\Container
21
{
22
    protected $content;
23
24
    /**
25
     * Returns the content of the container.
26
     *
27
     * @implements \PEIP\INF\Base\Container
28
     *
29
     * @return
30
     */
31
    public function getContent()
32
    {
33
        return $this->content;
34
    }
35
}
36