Completed
Push — master ( 998e37...26b154 )
by Faiz
01:50
created

SQLRepository::ayah()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 3
1
<?php
2
3
namespace FaizShukri\Quran\Repositories\Source;
4
5
use FaizShukri\Quran\Supports\Config;
6
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()
17
    {
18
19
    }
20
21
    public function chapters()
22
    {
23
        // TODO: Implement chapters() method.
24
    }
25
26
    public function chapter($chapter)
27
    {
28
        // TODO: Implement chapter() method.
29
    }
30
31
    public function ayah($surah, $ayah, $translation = 'ar')
32
    {
33
        // TODO: Implement ayah() method.
34
    }
35
36
}