Total Complexity | 5 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class SQLRepository implements SourceInterface |
||
8 | { |
||
9 | private $config; |
||
10 | |||
11 | public function setConfig(Config $config) |
||
12 | { |
||
13 | $this->config = $config; |
||
14 | } |
||
15 | |||
16 | public function initialize() |
||
18 | // TODO: Implement initialize() method. |
||
19 | } |
||
20 | |||
21 | public function surah($surah = null) |
||
23 | // TODO: Implement chapter() method. |
||
24 | } |
||
25 | |||
26 | public function ayah($surah, $ayah, $translation = 'ar') |
||
27 | { |
||
28 | // TODO: Implement ayah() method. |
||
29 | } |
||
30 | |||
31 | public function translations() |
||
33 | // TODO: Implement translation() method. |
||
34 | } |
||
35 | } |
||
36 |