Completed
Push — master ( f77784...60840d )
by Mahmoud
03:05
created

RoleRepository::model()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace App\Containers\Authorization\Data\Repositories;
4
5
use App\Port\Repository\Abstracts\Repository;
6
7
/**
8
 * Class RoleRepository.
9
 *
10
 * @author Mahmoud Zalt <[email protected]>
11
 */
12
class RoleRepository extends Repository
13
{
14
15
    /**
16
     * the container name. Must be set when the model has different name than the container
17
     *
18
     * @var  string
19
     */
20
    protected $container = 'Authorization';
21
22
    /**
23
     * @var array
24
     */
25
    protected $fieldSearchable = [
26
27
    ];
28
29
}
30