Conditions | 3 |
Paths | 3 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function saveWithPhoto($data) { |
||
16 | //Inicia la transacción |
||
17 | $this->begin(); |
||
18 | if ($this->create($data)) { |
||
19 | //Intenta actualizar la foto |
||
20 | if($this->updatePhoto()){ |
||
21 | //Se confirma la transacción |
||
22 | $this->commit(); |
||
23 | return true; |
||
24 | } |
||
25 | } |
||
26 | |||
27 | //Si alga falla se regresa la transacción |
||
28 | $this->rollback(); |
||
29 | return false; |
||
30 | } |
||
31 | |||
67 |