Passed
Push — master ( 15bdaa...c2dfbc )
by Saulius
10:02
created

DummyObject   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 37
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 0
1
<?php
2
/**
3
 * This file is part of the sauls/helpers package.
4
 *
5
 * @author    Saulius Vaičeliūnas <[email protected]>
6
 * @link      http://saulius.vaiceliunas.lt
7
 * @copyright 2018
8
 *
9
 * For the full copyright and license information, please view the LICENSE
10
 * file that was distributed with this source code.
11
 */
12
13
namespace Sauls\Component\Helper\Stubs;
14
15
16
class DummyObject
17
{
18
    /**
19
     * @var string
20
     */
21
    private $property1 = '';
22
23
    /**
24
     * @var string
25
     */
26
    private $secret = 'secret string';
27
28
    /**
29
     * @var string
30
     */
31
    public $property2 = '';
32
33
    /**
34
     * @var string
35
     */
36
    public $property3 = '';
37
38
    /**
39
     * @var string
40
     */
41
    public $text = '';
42
43
    public function getProperty1()
44
    {
45
        return $this->property1;
46
    }
47
48
    public function setProperty1($property1)
49
    {
50
        $this->property1 = $property1;
51
    }
52
}
53