Completed
Push — master ( 96f5c0...6ce451 )
by Dmitry
03:33
created
src/Expectation/Matcher/ValueMatcher.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      * @return $this
16 16
      */
17 17
     public function isInternalType($type): self {
18
-        $this->startStep('is internal type "' . $type . '"')
18
+        $this->startStep('is internal type "'.$type.'"')
19 19
              ->assertInternalType($type);
20 20
 
21 21
         return $this;
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @return $this
26 26
      */
27 27
     public function isNotInternalType($type): self {
28
-        $this->startStep('is not internal type "' . $type . '"')
28
+        $this->startStep('is not internal type "'.$type.'"')
29 29
              ->assertNotInternalType($type);
30 30
 
31 31
         return $this;
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * @return $this
59 59
      */
60 60
     public function isGreaterThan($expected): self {
61
-        $this->startStep('is greater than "' . $expected . '"')
61
+        $this->startStep('is greater than "'.$expected.'"')
62 62
              ->assertGreaterThan($expected);
63 63
 
64 64
         return $this;
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @return $this
69 69
      */
70 70
     public function isLessThan($expected): self {
71
-        $this->startStep('is less than "' . $expected . '"')
71
+        $this->startStep('is less than "'.$expected.'"')
72 72
              ->assertLessThan($expected);
73 73
 
74 74
         return $this;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @return $this
79 79
      */
80 80
     public function isGreaterOrEqualTo($expected): self {
81
-        $this->startStep('is greater or equal to "' . $expected . '"')
81
+        $this->startStep('is greater or equal to "'.$expected.'"')
82 82
              ->assertGreaterThanOrEqual($expected);
83 83
 
84 84
         return $this;
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * @return $this
89 89
      */
90 90
     public function isLessOrEqualTo($expected): self {
91
-        $this->startStep('is less or equal to "' . $expected . '"')
91
+        $this->startStep('is less or equal to "'.$expected.'"')
92 92
              ->assertLessThanOrEqual($expected);
93 93
 
94 94
         return $this;
Please login to merge, or discard this patch.