@@ -2,5 +2,5 @@ |
||
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'); |
@@ -64,7 +64,7 @@ discard block |
||
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 |
||
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 | /** |