Iys::retailers()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
namespace TarfinLabs\Iys;
4
5
class Iys
6
{
7
    public $config;
8
9
    public function __construct()
10
    {
11
        $this->config = config('laravel-iys');
12
    }
13
14
    /**
15
     * Marka işlemleri.
16
     *
17
     * @return Brand
18
     */
19
    public function brands()
20
    {
21
        return new Brand();
22
    }
23
24
    /**
25
     * İzin işlemleri.
26
     *
27
     * @return Consent
28
     */
29
    public function consents()
30
    {
31
        return new Consent();
32
    }
33
34
    /**
35
     * Bayi işlemleri.
36
     *
37
     * @return Retailer
38
     */
39
    public function retailers()
40
    {
41
       return new Retailer();
42
    }
43
}
44