Files
alrahma_sunday_school_api/app/Services/SchoolIds/SchoolIdAssignmentService.php
T
2026-06-11 11:46:12 -04:00

16 lines
328 B
PHP

<?php
namespace App\Services\SchoolIds;
use App\Services\SchoolIdService;
class SchoolIdAssignmentService
{
public function __construct(private SchoolIdService $schoolIdService) {}
public function assignToUser(int $userId): ?string
{
return $this->schoolIdService->assignSchoolIdToUser($userId);
}
}