Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
52 | 8 | public function queryValue(string $query, array $arguments = [], $defaultValue = null) |
|
53 | { |
||
54 | 8 | $stmt = $this->executePrepared($query, $arguments); |
|
55 | 8 | $values = $stmt->fetch(PDO::FETCH_NUM); |
|
56 | 8 | if (is_array($values) && array_key_exists(0, $values)) { |
|
57 | 8 | return $values[0]; |
|
58 | } |
||
59 | |||
60 | return $defaultValue; |
||
61 | } |
||
63 |