Files
InvoiceShelf/app/Services/CompanyMailConfigService.php
T

12 lines
212 B
PHP

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