Timeline::getId()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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