@@ -262,6 +262,8 @@ final public static function atMost(int $allowedInvocations): InvokedAtMostCount
262
262
/**
263
263
* @deprecated Use <code>$double->willReturn()</code> instead of <code>$double->will($this->returnValue())</code>
264
264
* @see https://github.com/sebastianbergmann/phpunit/issues/5423
265
+ *
266
+ * @codeCoverageIgnore
265
267
*/
266
268
final public static function returnValue (mixed $ value ): ReturnStub
267
269
{
@@ -271,6 +273,8 @@ final public static function returnValue(mixed $value): ReturnStub
271
273
/**
272
274
* @deprecated Use <code>$double->willReturnMap()</code> instead of <code>$double->will($this->returnValueMap())</code>
273
275
* @see https://github.com/sebastianbergmann/phpunit/issues/5423
276
+ *
277
+ * @codeCoverageIgnore
274
278
*/
275
279
final public static function returnValueMap (array $ valueMap ): ReturnValueMapStub
276
280
{
@@ -280,6 +284,8 @@ final public static function returnValueMap(array $valueMap): ReturnValueMapStub
280
284
/**
281
285
* @deprecated Use <code>$double->willReturnArgument()</code> instead of <code>$double->will($this->returnArgument())</code>
282
286
* @see https://github.com/sebastianbergmann/phpunit/issues/5423
287
+ *
288
+ * @codeCoverageIgnore
283
289
*/
284
290
final public static function returnArgument (int $ argumentIndex ): ReturnArgumentStub
285
291
{
@@ -289,6 +295,8 @@ final public static function returnArgument(int $argumentIndex): ReturnArgumentS
289
295
/**
290
296
* @deprecated Use <code>$double->willReturnCallback()</code> instead of <code>$double->will($this->returnCallback())</code>
291
297
* @see https://github.com/sebastianbergmann/phpunit/issues/5423
298
+ *
299
+ * @codeCoverageIgnore
292
300
*/
293
301
final public static function returnCallback (callable $ callback ): ReturnCallbackStub
294
302
{
@@ -298,6 +306,8 @@ final public static function returnCallback(callable $callback): ReturnCallbackS
298
306
/**
299
307
* @deprecated Use <code>$double->willReturnSelf()</code> instead of <code>$double->will($this->returnSelf())</code>
300
308
* @see https://github.com/sebastianbergmann/phpunit/issues/5423
309
+ *
310
+ * @codeCoverageIgnore
301
311
*/
302
312
final public static function returnSelf (): ReturnSelfStub
303
313
{
@@ -313,6 +323,8 @@ final public static function throwException(Throwable $exception): ExceptionStub
313
323
* @deprecated Use <code>$double->willReturn()</code> instead of <code>$double->will($this->onConsecutiveCalls())</code>
314
324
* @see https://github.com/sebastianbergmann/phpunit/issues/5423
315
325
* @see https://github.com/sebastianbergmann/phpunit/issues/5425
326
+ *
327
+ * @codeCoverageIgnore
316
328
*/
317
329
final public static function onConsecutiveCalls (mixed ...$ arguments ): ConsecutiveCallsStub
318
330
{
@@ -619,6 +631,8 @@ final public function expectsOutput(): bool
619
631
* @internal This method is not covered by the backward compatibility promise for PHPUnit
620
632
*
621
633
* @deprecated
634
+ *
635
+ * @codeCoverageIgnore
622
636
*/
623
637
final public function registerMockObjectsFromTestArgumentsRecursively (): void
624
638
{
@@ -1189,6 +1203,8 @@ protected function runTest(): mixed
1189
1203
* @throws Exception
1190
1204
*
1191
1205
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/5214
1206
+ *
1207
+ * @codeCoverageIgnore
1192
1208
*/
1193
1209
protected function iniSet (string $ varName , string $ newValue ): void
1194
1210
{
@@ -1214,6 +1230,8 @@ protected function iniSet(string $varName, string $newValue): void
1214
1230
* @throws Exception
1215
1231
*
1216
1232
* @deprecated https://github.com/sebastianbergmann/phpunit/issues/5216
1233
+ *
1234
+ * @codeCoverageIgnore
1217
1235
*/
1218
1236
protected function setLocale (mixed ...$ arguments ): void
1219
1237
{
0 commit comments