Passed
Push — master ( 750b2b...2c58c8 )
by Julien
05:58
created

AbstractParams

Complexity

Total Complexity 0

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 0
eloc 1
dl 0
loc 5
ccs 0
cts 2
cp 0
c 1
b 0
f 1
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\AbstractTrait;
13
14
trait AbstractParams
15
{
16
    abstract public function getParam(string $key, string|array $filters = null, string $default = null, array $params = null): mixed;
17
    
18
    abstract protected function getParams(array $filters = null): array;
19
}
20