Passed
Push — master ( b64172...069efd )
by Dmitry
01:53
created
src/Expectation/Internal/ObjectExceptionMatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,19 +15,19 @@
 block discarded – undo
15 15
  */
16 16
 class ObjectExceptionMatcher extends Matcher {
17 17
     public function withMessage($message) {
18
-        $this->startStep('has message "' . $message . '"')
18
+        $this->startStep('has message "'.$message.'"')
19 19
             ->expectExceptionMessage($message);
20 20
         return $this;
21 21
     }
22 22
 
23 23
     public function withMessageMatchesPattern($messagePattern) {
24
-        $this->startStep('has message matching pattern "' . $messagePattern . '"')
24
+        $this->startStep('has message matching pattern "'.$messagePattern.'"')
25 25
             ->expectExceptionMessage($messagePattern);
26 26
         return $this;
27 27
     }
28 28
 
29 29
     public function withCode($code) {
30
-        $this->startStep('has code "' . $code . '"')
30
+        $this->startStep('has code "'.$code.'"')
31 31
             ->expectExceptionCode($code);
32 32
         return $this;
33 33
     }
Please login to merge, or discard this patch.