Completed
Push — master ( 1bcbc5...8580f6 )
by Laurent
02:25
created
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,5 +2,5 @@
 block discarded – undo
2 2
 
3 3
 use Doctrine\Common\Annotations\AnnotationRegistry;
4 4
 
5
-$loader = @include __DIR__ . '/../vendor/autoload.php';
5
+$loader = @include __DIR__.'/../vendor/autoload.php';
6 6
 AnnotationRegistry::registerLoader('class_exists');
Please login to merge, or discard this patch.
tests/Service/ServiceTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     private function getExpectedResponse($name)
66 66
     {
67
-        return file_get_contents(__DIR__ . "/Data/Response/" . $name . ".json");
67
+        return file_get_contents(__DIR__."/Data/Response/".$name.".json");
68 68
     }
69 69
 
70 70
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     protected function getExpectedPayload($name)
76 76
     {
77
-        return file_get_contents(__DIR__ . "/Data/Request/" . $name . ".json");
77
+        return file_get_contents(__DIR__."/Data/Request/".$name.".json");
78 78
     }
79 79
 
80 80
     /**
Please login to merge, or discard this patch.