Completed
Pull Request — master (#20)
by Vladimir
02:10
created

FileAwareException::getFileLocation()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 4
ccs 0
cts 2
cp 0
crap 2
rs 10
1
<?php
2
3
namespace allejo\stakx\Exception;
4
5
class FileAwareException extends \Exception
6
{
7
    private $fileLocation;
8
9
    /**
10
     * @return mixed
11
     */
12
    public function getFileLocation ()
13
    {
14
        return $this->fileLocation;
15
    }
16
17
    /**
18
     * @param mixed $fileLocation
19
     */
20
    public function setFileLocation ($fileLocation)
21
    {
22
        $this->fileLocation = $fileLocation;
23
    }
24
}