Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 8 |
Ratio | 100 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
48 | View Code Duplication | public function toPg($data, $type, Session $session) |
|
49 | { |
||
50 | return |
||
51 | $data !== null |
||
52 | ? sprintf("%s '%s'", $type, $data + 0) |
||
53 | : sprintf("NULL::%s", $type) |
||
54 | ; |
||
55 | } |
||
56 | |||
71 |