Passed
Push — master ( ab9245...cbbee4 )
by Marin
02:09
created
Tests/EnveditorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 
18 18
     protected function setUp()
19 19
     {
20
-        $this->tmpPathEnv = sys_get_temp_dir() . self::DS . 'EnveditorTestEnv.env';
20
+        $this->tmpPathEnv = sys_get_temp_dir().self::DS.'EnveditorTestEnv.env';
21 21
 
22 22
         if (!touch($this->tmpPathEnv)) {
23 23
             throw new \RuntimeException(sprintf('A test failed. Could not write a file to "%s" path', $this->tmpPathEnv));
Please login to merge, or discard this patch.
Tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,4 +12,4 @@
 block discarded – undo
12 12
  * Autoloader
13 13
  */
14 14
 // require __DIR__.'../../../../../vendor/autoload.php';
15
-require __DIR__ .'/../../../vendor/autoload.php';
15
+require __DIR__.'/../../../vendor/autoload.php';
Please login to merge, or discard this patch.
src/Resolver/ValueResolverInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 
5 5
 interface ValueResolverInterface
6 6
 {
7
-    const CLOSERS =  '/^[\'"](.*)[\'"]/i';
7
+    const CLOSERS = '/^[\'"](.*)[\'"]/i';
8 8
     const CLOSURE_MATCH = '/\"(.*)\s+(.*)\"/i';
9 9
 
10 10
     const EXPLODE_COMMENTS = '/(?=(^(.*))[ ](?=#[ a-z0-9]+))|(?=(^(.*))+)/i';
Please login to merge, or discard this patch.