Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-09 00:03:03 -04:00
parent 8d4d610b82
commit b5fd4a4ca1
1414 changed files with 11317 additions and 10201 deletions
+3 -3
View File
@@ -11,19 +11,19 @@ trait AssertsE2EApiResponses
$this->assertLessThan(
500,
$response->getStatusCode(),
$context . ' should return a controlled response, not a 5xx crash. Body: ' . $response->getContent()
$context.' should return a controlled response, not a 5xx crash. Body: '.$response->getContent()
);
}
/**
* @param array<int, int> $statuses
* @param array<int, int> $statuses
*/
protected function assertStatusIn(TestResponse $response, array $statuses, string $context): void
{
$this->assertContains(
$response->getStatusCode(),
$statuses,
$context . ' returned unexpected status ' . $response->getStatusCode() . '. Body: ' . $response->getContent()
$context.' returned unexpected status '.$response->getStatusCode().'. Body: '.$response->getContent()
);
}