Completed
Push — master ( ac8326...263991 )
by Jean
11:35 queued 07:30
created
src/Notifier/Slack/Notifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@
 block discarded – undo
85 85
             $notification = new SlackNotification();
86 86
             $notification->to = $to;
87 87
             $message = $deal->getAgentName() . ' ';
88
-            $message.= $parameters->currency . ' *' . number_format($deal->getPrice()) . '* ';
88
+            $message .= $parameters->currency . ' *' . number_format($deal->getPrice()) . '* ';
89 89
 
90 90
             if ($deal->getDeepLinkUrl()) {
91
-                $message .=  PHP_EOL . "<{$deal->getDeepLinkUrl()}|Deep Link>";
91
+                $message .= PHP_EOL . "<{$deal->getDeepLinkUrl()}|Deep Link>";
92 92
             }
93 93
 
94 94
             $notification->message = $message;
Please login to merge, or discard this patch.
src/Service/ElasticSearch/ElasticSearchProcessorTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     private $processor;
14 14
 
15
-   /**
15
+    /**
16 16
      * @return Processor
17 17
      */
18 18
     public function getProcessor()
Please login to merge, or discard this patch.