Passed
Push — 1.0.x ( 8353d5...3a2c37 )
by Julien
21:28
created

AbstractDistinct

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 7
ccs 0
cts 3
cp 0
wmc 0
1
<?php
2
3
/**
4
 * This file is part of the Zemit Framework.
5
 *
6
 * (c) Zemit Team <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE.txt
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Zemit\Mvc\Controller\Traits\Abstracts\Query;
13
14
use Phalcon\Support\Collection;
15
16
trait AbstractDistinct
17
{
18
    abstract public function initializeDistinct(): void;
19
    
20
    abstract public function setDistinct(?Collection $distinct): void;
21
    
22
    abstract public function getDistinct(): ?Collection;
23
}
24