| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 57 | public function callbackSubmit() |
||
| 58 | { |
||
| 59 | $comment = new Comment(); |
||
| 60 | $comment->setDb($this->di->get("db")); |
||
| 61 | $comment->email = $this->form->value("email"); |
||
| 62 | $comment->text = $this->form->value("text"); |
||
| 63 | $comment->save(); |
||
| 64 | $this->di->get("response")->redirect("comments"); |
||
| 65 | } |
||
| 66 | } |
||
| 67 |