Passed
Push — master ( 069efd...bb88de )
by Dmitry
02:27
created
src/Mixin/TestGuyMethods.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      * @return $this
47 47
      */
48 48
     public function describe(string $scenario): TestGuy {
49
-        $this->steps->add('I describe ' . $scenario);
49
+        $this->steps->add('I describe '.$scenario);
50 50
         return $this;
51 51
     }
52 52
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * @return $this
61 61
      */
62 62
     public function expectThat(string $expectation): TestGuy {
63
-        $this->steps->add('I expect that ' . $expectation);
63
+        $this->steps->add('I expect that '.$expectation);
64 64
 
65 65
         return $this;
66 66
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      * @return $this
79 79
      */
80 80
     public function verifyThat(string $expectation, callable $verificationSteps = null): TestGuy {
81
-        $this->steps->add('I verify that ' . $expectation);
81
+        $this->steps->add('I verify that '.$expectation);
82 82
         if ($verificationSteps) {
83 83
             $verificationSteps($this);
84 84
         }
Please login to merge, or discard this patch.
src/Specification/Tester.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      * @return $this
37 37
      */
38 38
     public function expectTo(string $expectation): TestGuy {
39
-        $this->steps->add('I expect to ' . $expectation);
39
+        $this->steps->add('I expect to '.$expectation);
40 40
         return $this;
41 41
     }
42 42
 
Please login to merge, or discard this patch.