Timeline   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getId() 0 3 1
1
<?php
2
3
/**
4
 * This file is part of the <name> project.
5
 *
6
 * (c) <yourname> <youremail>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Chamilo\TimelineBundle\Entity;
13
14
use Sonata\TimelineBundle\Entity\Timeline as BaseTimeline;
15
16
/**
17
 * This file has been generated by the Sonata EasyExtends bundle.
18
 *
19
 * @see https://sonata-project.org/bundles/easy-extends
20
 *
21
 * References :
22
 *   working with object : http://www.doctrine-project.org/projects/orm/2.0/docs/reference/working-with-objects/en
23
 *
24
 * @author <yourname> <youremail>
25
 */
26
class Timeline extends BaseTimeline
27
{
28
    /**
29
     * @var int
30
     */
31
    protected $id;
32
33
    /**
34
     * Get id.
35
     *
36
     * @return int $id
37
     */
38
    public function getId()
39
    {
40
        return $this->id;
41
    }
42
}
43