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
@@ -46,7 +46,7 @@ class ApiCalendarScheduleConflictContractTest extends FullSurfaceE2EContractCase
$query = '?from=1900-01-01&to=2100-12-31&scope=all&include_private=true';
foreach (['parent' => $this->parent, 'teacher' => $this->teacher, 'student' => $this->studentUser] as $label => $actor) {
$response = $this->requestAs($actor, 'GET', $uri . $query);
$response = $this->requestAs($actor, 'GET', $uri.$query);
$this->assertNoServerError($response, "$label GET $uri calendar scope");
$this->assertStatusIn($response, [200, 204, 302, 400, 401, 403, 404, 409, 419, 422], "$label GET $uri calendar scope");
$this->assertStringNotContainsStringIgnoringCase('private_note', $response->getContent(), "$uri should not expose private event notes to $label.");