| Conditions | 4 |
| Paths | 4 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | protected function formatBindings($bindings) |
||
| 37 | { |
||
| 38 | foreach ($bindings as $key => $binding) { |
||
| 39 | if ($binding instanceof DateTime) { |
||
| 40 | $bindings[$key] = $binding->format('Y-m-d H:i:s'); |
||
| 41 | } elseif (is_string($binding)) { |
||
| 42 | $bindings[$key] = str_replace("'", "\\'", $binding); |
||
| 43 | } |
||
| 44 | } |
||
| 45 | |||
| 46 | return $bindings; |
||
| 47 | } |
||
| 87 |