JsonReader   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 26
rs 10
c 0
b 0
f 0
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A readAndParse() 0 9 2
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
}