| Conditions | 2 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | 2 | public function execute(Candidate $candidate) |
|
| 35 | { |
||
| 36 | 2 | $connection = $this->getConnection(); |
|
| 37 | |||
| 38 | try { |
||
| 39 | 2 | $statement = $connection->prepare($candidate->getContent()); |
|
| 40 | 2 | $statement->execute(); |
|
| 41 | 2 | } catch (PDOException $pdoException) { |
|
| 42 | 1 | throw Exception::candidateScriptError($candidate, $pdoException); |
|
| 43 | } |
||
| 44 | 1 | } |
|
| 45 | |||
| 56 |