Files
InvoiceShelf/app/Services/CompanyMailConfigService.php
2026-04-09 10:06:27 +02:00

12 lines
212 B
PHP

<?php
namespace App\Services;
class CompanyMailConfigService
{
public static function apply(int $companyId): void
{
app(MailConfigurationService::class)->applyCompanyConfig($companyId);
}
}