| Total Complexity | 5 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 8 | class JsonFileReader |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var \Vaimo\ComposerChangelogs\Decoders\JsonDecoder |
||
| 12 | */ |
||
| 13 | private $jsonDecoder; |
||
| 14 | |||
| 15 | public function __construct() |
||
| 16 | { |
||
| 17 | $this->jsonDecoder = new \Vaimo\ComposerChangelogs\Decoders\JsonDecoder(); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function readToArray($source) |
||
| 43 | } |
||
| 44 | } |
||
| 45 |