Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class ExcludeBuilder extends Fluent |
||
11 | { |
||
12 | use WhereBuilderTrait; |
||
13 | |||
14 | 2 | public function method(string $method): self |
|
18 | } |
||
19 | |||
20 | 1 | public function with(string $storageParameter, $value): self |
|
24 | } |
||
25 | |||
26 | 1 | public function tableSpace(string $tableSpace): self |
|
27 | { |
||
28 | 1 | $this->attributes['tableSpace'] = $tableSpace; |
|
29 | 1 | return $this; |
|
30 | } |
||
31 | |||
32 | 6 | public function using(string $excludeElement, string $operator): self |
|
36 | } |
||
37 | } |
||
38 |