FiltratorInterface::add()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
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