mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 09:14:08 +00:00
12 lines
212 B
PHP
12 lines
212 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
class CompanyMailConfigService
|
|
{
|
|
public static function apply(int $companyId): void
|
|
{
|
|
app(MailConfigurationService::class)->applyCompanyConfig($companyId);
|
|
}
|
|
}
|