Completed
Push — master ( 5c46bf...f77784 )
by Mahmoud
03:22
created

OrderByNameCriteria   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A apply() 0 4 1
1
<?php
2
3
namespace App\Port\Criteria\Eloquent;
4
5
use App\Port\Criteria\Abstracts\Criteria;
6
use Prettus\Repository\Contracts\RepositoryInterface as PrettusRepositoryInterface;
7
8
/**
9
 * Class OrderByNameCriteria.
10
 *
11
 * @author  Mahmoud Zalt <[email protected]>
12
 */
13
class OrderByNameCriteria extends Criteria
14
{
15
16
    /**
17
     * @param                                                   $model
18
     * @param \Prettus\Repository\Contracts\RepositoryInterface $repository
19
     *
20
     * @return mixed
21
     */
22
    public function apply($model, PrettusRepositoryInterface $repository)
23
    {
24
        return $model->orderBy('name', 'asc');
25
    }
26
}
27