Completed
Push — master ( e547b2...7aca4a )
by Julito
14:14
created

GalleryItem::getId()   A

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
/* For licensing terms, see /license.txt */
3
4
namespace Chamilo\MediaBundle\Entity;
5
6
use Sonata\MediaBundle\Entity\BaseGalleryItem;
7
8
/**
9
 * Class GalleryItem.
10
 *
11
 * @package Chamilo\MediaBundle\Entity
12
 */
13
class GalleryItem extends BaseGalleryItem
14
{
15
    /**
16
     * @var int
17
     */
18
    protected $id;
19
20
    /**
21
     * Get id.
22
     *
23
     * @return int $id
24
     */
25
    public function getId()
26
    {
27
        return $this->id;
28
    }
29
}
30