JsonReader::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace GGGGino\WarehousePath;
4
5
6
class JsonReader
7
{
8
    /**
9
     * @var string
10
     */
11
    private $pathFile;
12
13
    /**
14
     * @var array
15
     */
16
    private $jsonParsed;
17
18
    public function __construct(string $pathFile)
19
    {
20
        $this->pathFile = $pathFile;
21
    }
22
23
    public function readAndParse()
24
    {
25
        foreach (array('/', '/../') as $base) {
26
27
        }
28
        $string = file_get_contents($this->pathFile);
29
        $this->jsonParsed = json_decode($string, true);
30
31
        return $this->jsonParsed;
32
    }
33
}