Completed
Push — master ( 74c577...c1ce98 )
by Kirill
06:10
created

Url::getId()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
declare(strict_types = 1);
3
/**
4
 * This file is part of GitterBot package.
5
 *
6
 * @author Serafim <[email protected]>
7
 * @date 28.03.2016 14:35
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
namespace Domains\Message;
13
14
use Core\Mappers\Message\UrlMapper;
15
16
/**
17
 * Class Url
18
 * @property string $url
19
 * @package Domains\Message
20
 */
21
class Url extends UrlMapper
22
{
23
    /**
24
     * @return string
25
     */
26
    public function getId()
27
    {
28
        return $this->id;
29
    }
30
}
31