PgTsRange::getTypeClassName()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/*
3
 * This file is part of Pomm's Foundation package.
4
 *
5
 * (c) 2014 - 2017 Grégoire HUBERT <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
namespace PommProject\Foundation\Converter;
11
12
/**
13
 * PgTsRange
14
 *
15
 * Range for timestamps.
16
 *
17
 * @package   Foundation
18
 * @copyright 2014 - 2017 Grégoire HUBERT
19
 * @author    Grégoire HUBERT
20
 * @license   X11 {@link http://opensource.org/licenses/mit-license.php}
21
 * @see       TypeConverter
22
 */
23
class PgTsRange extends TypeConverter
24
{
25
    /**
26
     * getTypeClassName
27
     *
28
     * @see TypeConverter
29
     */
30
    public function getTypeClassName()
31
    {
32
        return '\PommProject\Foundation\Converter\Type\TsRange';
33
    }
34
}
35