Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
XRequest | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
addConditionProcessId | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace BO\Zmsdb\Query; |
4 | |
5 | class XRequest extends Base |
6 | { |
7 | /** |
8 | * |
9 | * @var String TABLE mysql table reference |
10 | */ |
11 | const TABLE = 'buergeranliegen'; |
12 | |
13 | public function addConditionProcessId($processId) |
14 | { |
15 | $this->query->where('BuergerID', '=', $processId); |
16 | return $this; |
17 | } |
18 | } |