Test Setup Failed
Push — master ( aa9039...94c501 )
by Derek
03:32
created

TestClass::getTestProperty()   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
namespace Subreality\Dilmun\Tests;
3
4
class TestClass
5
{
6
    private $test_property = false;
7
8
    public function getTestProperty()
9
    {
10
        return $this->test_property;
11
    }
12
13
    public function setTestProperty($test_property)
14
    {
15
        $this->test_property = $test_property;
16
    }
17
18
    public function toggleTestProperty()
19
    {
20
        $this->test_property = !$this->test_property;
21
    }
22
}