Passed
Push — 0.7.0 ( 7cf8ff...8cbd21 )
by Alexander
04:15 queued 11s
created
src/components/Dotenv/Dotenv.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
             $quote = $value[0];
260 260
 
261 261
             $regexPattern = sprintf(
262
-					'/^
262
+                    '/^
263 263
 					%1$s          # match a quote at the start of the value
264 264
 					(             # capturing sub-pattern used
265 265
 								  (?:          # we do not need to capture this
Please login to merge, or discard this patch.
src/components/Dotenv/Repository/Adapters/EnvAdapter.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -70,14 +70,14 @@
 block discarded – undo
70 70
         return null;
71 71
     }
72 72
 
73
-     /**
74
-     * Write to an environment variable.
75
-     * 
76
-     * @param  string  $name
77
-     * @param  string  $value
78
-     * 
79
-     * @return bool
80
-     */
73
+        /**
74
+         * Write to an environment variable.
75
+         * 
76
+         * @param  string  $name
77
+         * @param  string  $value
78
+         * 
79
+         * @return bool
80
+         */
81 81
     public function write(string $name, string $value)
82 82
     {
83 83
         if (empty($_ENV[$name]))
Please login to merge, or discard this patch.
src/components/Dotenv/Repository/Adapters/ServerAdapter.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -69,14 +69,14 @@
 block discarded – undo
69 69
         return null;
70 70
     }
71 71
 
72
-     /**
73
-     * Write to an environment variable.
74
-     * 
75
-     * @param  string  $name
76
-     * @param  string  $value
77
-     * 
78
-     * @return bool
79
-     */
72
+        /**
73
+         * Write to an environment variable.
74
+         * 
75
+         * @param  string  $name
76
+         * @param  string  $value
77
+         * 
78
+         * @return bool
79
+         */
80 80
     public function write(string $name, string $value)
81 81
     {
82 82
         $notHttpName = 0 !== strpos($name, 'HTTP_');
Please login to merge, or discard this patch.
src/components/Dotenv/Repository/AdapterRepository.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -71,14 +71,14 @@
 block discarded – undo
71 71
         return $this->readers->read($name);
72 72
     }
73 73
 
74
-     /**
75
-     * Set an environment variable.
76
-     * 
77
-     * @param  string  $name
78
-     * @param  string  $value
79
-     * 
80
-     * @return bool
81
-     */
74
+        /**
75
+         * Set an environment variable.
76
+         * 
77
+         * @param  string  $name
78
+         * @param  string  $value
79
+         * 
80
+         * @return bool
81
+         */
82 82
     public function set(string $name, string $value)
83 83
     {
84 84
         return $this->writers->write($name);
Please login to merge, or discard this patch.