19 lines
393 B
PHP
19 lines
393 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Support;
|
|
|
|
use RuntimeException;
|
|
|
|
/** Thrown instead of exit() when QDB_TESTING is defined. */
|
|
final class JsonSuccessResponse extends RuntimeException
|
|
{
|
|
public function __construct(
|
|
public readonly mixed $data,
|
|
public readonly int $httpStatus = 200,
|
|
) {
|
|
parent::__construct('JSON success', $httpStatus);
|
|
}
|
|
}
|