Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
48 | 3 | public function set($key, $value) |
|
49 | { |
||
50 | 3 | $placeholder = $key[0] === ':' ? $key : ':' . $key; |
|
51 | |||
52 | 3 | $this->builder->setParameter($placeholder, $value); |
|
53 | |||
54 | 3 | $key = (string) $key . ' = ' . $placeholder; |
|
55 | |||
56 | 3 | $this->builder->add('set', (string) $key, true); |
|
57 | |||
58 | 3 | return $this; |
|
59 | } |
||
74 |