FiltratorInterface
last analyzed

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
add() 0 1 ?
remove() 0 1 ?
filter() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
namespace Sirius\Filtration;
5
6
interface FiltratorInterface
7
{
8
    public function add($selector, $callbackOrFilterName = null, $options = null, $recursive = false, $priority = 0);
9
10
    public function remove($selector, $callbackOrName = true);
11
12
    public function filter(array $data = []);
13
}
14