Files
alrahma_sunday_school_api/app/Services/SchoolIds/SchoolIdAssignmentService.php
T
2026-06-08 23:45:55 -04:00

18 lines
337 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);
}
}