Completed
Pull Request — master (#2)
by Timothy
06:02
created
features/Bootstrap/ContextTrait/DotEnvContextTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,6 +27,6 @@
 block discarded – undo
27 27
      */
28 28
     private function createDotEnv()
29 29
     {
30
-        return new Dotenv(__DIR__ . '/../../../', '.env');
30
+        return new Dotenv(__DIR__.'/../../../', '.env');
31 31
     }
32 32
 }
Please login to merge, or discard this patch.
features/Bootstrap/S3DataStoreContext.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
      */
38 38
     public function iHaveLargeMessage()
39 39
     {
40
-        $this->message = gmdate('c') . PHP_EOL . $this->getLargeMessage();
40
+        $this->message = gmdate('c').PHP_EOL.$this->getLargeMessage();
41 41
     }
42 42
 
43 43
     /**
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function iHaveASmallMessage()
47 47
     {
48
-        $this->message = gmdate('c') . PHP_EOL . 'Hello, World!';
48
+        $this->message = gmdate('c').PHP_EOL.'Hello, World!';
49 49
     }
50 50
 
51 51
     /**
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     public function getLargeMessage()
63 63
     {
64 64
         if (!$this->largeMessage) {
65
-            $filename = sys_get_temp_dir() . DIRECTORY_SEPARATOR . md5(__METHOD__);
65
+            $filename = sys_get_temp_dir().DIRECTORY_SEPARATOR.md5(__METHOD__);
66 66
             if (file_exists($filename)) {
67 67
                 // TODO Check file content length.
68 68
                 
Please login to merge, or discard this patch.
src/ClaimCheck/Serializer/ClaimCheckSerializerChain.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             }
54 54
         }
55 55
 
56
-        throw new InvalidArgumentException('Failed to hydrate Claim Check from message: ' . $encodedValue);
56
+        throw new InvalidArgumentException('Failed to hydrate Claim Check from message: '.$encodedValue);
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.