| Conditions | 3 |
| Paths | 3 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function execute ($args = null) { |
||
| 58 | $this->db->getLogger()->__invoke($this->queryString); |
||
| 59 | if ($result = !parent::execute($args)) { |
||
| 60 | $info = $this->errorInfo(); |
||
| 61 | if ($info[0] == 0) { |
||
| 62 | $argc = count($args); |
||
| 63 | throw new ArgumentCountError("Too many arguments given ({$argc})"); |
||
| 64 | } |
||
| 65 | } |
||
| 66 | return $result; |
||
| 67 | } |
||
| 78 |