Completed
Pull Request — master (#63)
by Phecho
05:20
created
app/Presenters/MomentPresenter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 
37 37
     public function formattedTarget()
38 38
     {
39
-        if($this->wrappedObject->target instanceof Comment) {
39
+        if ($this->wrappedObject->target instanceof Comment) {
40 40
             return Markdown::convertToHtml($this->wrappedObject->target->message);
41 41
         } elseif ($this->wrappedObject->target instanceof Issue) {
42 42
             return Markdown::convertToHtml($this->wrappedObject->target->description);
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
     public function icon()
66 66
     {
67
-        if($this->wrappedObject->target instanceof Comment) {
67
+        if ($this->wrappedObject->target instanceof Comment) {
68 68
             return 'fa fa-comments-o';
69 69
         } elseif ($this->wrappedObject->target instanceof Issue) {
70 70
             return 'fa fa-exclamation-circle';
Please login to merge, or discard this patch.