Conditions | 3 |
Paths | 2 |
Total Lines | 15 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | protected function realExecute(array $parameters)/*# : bool */ |
||
46 | { |
||
47 | /* @var $stmt \PDOStatement */ |
||
48 | $stmt = $this->prepared; |
||
49 | |||
50 | // bind parameters |
||
51 | if (!empty($parameters) && |
||
52 | !$this->bindParameters($stmt, $parameters) |
||
53 | ) { |
||
54 | return false; |
||
55 | } |
||
56 | |||
57 | // execute |
||
58 | return $stmt->execute(); |
||
59 | } |
||
60 | |||
93 |