Completed
Push — master ( 461219...630231 )
by Harry
04:03
created

FakeConstructable::getFirst()   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
/**
3
 * This file is part of graze/data-file
4
 *
5
 * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 *
10
 * @license https://github.com/graze/data-file/blob/master/LICENSE.md
11
 * @link    https://github.com/graze/data-file
12
 */
13
14
namespace Graze\DataFile\Test\Helper\Builder;
15
16
class FakeConstructable
17
{
18
    /** @var mixed|null */
19
    private $first;
20
    /** @var mixed|null */
21
    private $second;
22
    /** @var mixed|null */
23
    private $third;
24
25
    /**
26
     * FakeConstructable constructor.
27
     *
28
     * @param mixed|null $first
29
     * @param mixed|null $second
30
     * @param mixed|null $third
31
     */
32
    public function __construct($first = null, $second = null, $third = null)
33
    {
34
        $this->first = $first;
35
        $this->second = $second;
36
        $this->third = $third;
37
    }
38
39
    /**
40
     * @return mixed|null
41
     */
42
    public function getFirst()
43
    {
44
        return $this->first;
45
    }
46
47
    /**
48
     * @return mixed|null
49
     */
50
    public function getSecond()
51
    {
52
        return $this->second;
53
    }
54
55
    /**
56
     * @return mixed|null
57
     */
58
    public function getThird()
59
    {
60
        return $this->third;
61
    }
62
}
63