Completed
Push — master ( cfe8d7...fcc746 )
by André
19:36 queued 06:48
created

URL   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
/**
4
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
5
 * @license For full copyright and license information view LICENSE file distributed with this source code.
6
 */
7
namespace eZ\Publish\API\Repository\Values\URL\Query\SortClause;
8
9
use eZ\Publish\API\Repository\Values\URL\Query\SortClause;
10
11
class URL extends SortClause
12
{
13
    /**
14
     * Constructs a new URL SortClause.
15
     *
16
     * @param string $sortDirection
17
     */
18
    public function __construct($sortDirection = self::SORT_ASC)
19
    {
20
        parent::__construct('url', $sortDirection);
21
    }
22
}
23