Fix Pint formatting

This commit is contained in:
root
2026-06-09 01:25:14 -04:00
parent 6be4875c5e
commit 20a0b6c4e5
1485 changed files with 11318 additions and 10273 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.");