We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c1fe66 commit 6f97491Copy full SHA for 6f97491
test/Unit/Config/ApiContextTest.php
@@ -94,7 +94,7 @@ public function provideGetApiUrlCases(): iterable
94
95
yield [$apiContext, 'http://localhost:80/test/test/api/'];
96
97
- $apiContext = (new ApiContext(self::HOST, self::TOKEN));
+ $apiContext = new ApiContext(self::HOST, self::TOKEN);
98
99
yield [$apiContext, 'https://localhost:443/api/'];
100
@@ -120,7 +120,7 @@ public function provideGetApiPathCases(): iterable
120
121
yield [$apiContext, '/test/test/api/'];
122
123
124
125
yield [$apiContext, '/api/'];
126
}
0 commit comments