Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-08 23:30:22 -04:00
parent 567dc24649
commit c792b8be05
1288 changed files with 10766 additions and 9669 deletions
+3 -3
View File
@@ -10,7 +10,7 @@ class ApiLoginSecurityServiceTest extends TestCase
{
public function test_roles_object_map_preserves_role_names(): void
{
$service = new ApiLoginSecurityService();
$service = new ApiLoginSecurityService;
$map = $service->rolesToObjectMap(['Teacher', 'Admin']);
$this->assertTrue($map->Teacher);
@@ -24,7 +24,7 @@ class ApiLoginSecurityServiceTest extends TestCase
public function test_build_login_response_includes_teacher_class_context(): void
{
$service = new ApiLoginSecurityService();
$service = new ApiLoginSecurityService;
$user = $this->getMockBuilder(User::class)
->onlyMethods(['roleNames', 'teacherSessionContext'])
@@ -57,7 +57,7 @@ class ApiLoginSecurityServiceTest extends TestCase
public function test_build_login_response_includes_teacher_assistant_class_context(): void
{
$service = new ApiLoginSecurityService();
$service = new ApiLoginSecurityService;
$user = $this->getMockBuilder(User::class)
->onlyMethods(['roleNames', 'teacherSessionContext'])