OrderByCreationDateDescendingCriteria   A
last analyzed

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\Ship\Features\Criterias\Eloquent;
4
5
use App\Ship\Parents\Criterias\Criteria;
6
use Prettus\Repository\Contracts\RepositoryInterface as PrettusRepositoryInterface;
7
8
/**
9
 * Class OrderByCreationDateDescendingCriteria.
10
 *
11
 * @author  Mahmoud Zalt <[email protected]>
12
 */
13
class OrderByCreationDateDescendingCriteria 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('created_at', 'desc');
25
    }
26
}
27