Completed
Branch master (e25020)
by Richan
03:06
created

JsonRepository::read()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace RichanFongdasen\I18n\Repositories;
4
5
class JsonRepository extends Repository
6
{
7
    /**
8
     * Read the json datasource.
9
     *
10
     * @return array
11
     */
12
    protected function read()
13
    {
14
        return json_decode(file_get_contents($this->datasource));
15
    }
16
}
17