phase 2 dev
This commit is contained in:
parent
5a7478907e
commit
ba48745809
59 changed files with 2692 additions and 1994 deletions
|
|
@ -15,7 +15,7 @@ class Lead
|
|||
->pluck('slug', 'id');
|
||||
}
|
||||
|
||||
public static function setOutputDirs(string $dir, string $subdir): void
|
||||
public static function setOutputDirs(string $dir, ?string $subdir): void
|
||||
{
|
||||
MailDirService::setOutputDir($dir, $subdir);
|
||||
}
|
||||
|
|
@ -39,12 +39,12 @@ class Lead
|
|||
return MailDirService::getCustomerMailDir($id);
|
||||
}
|
||||
|
||||
public static function getCustomerMailName(\App\Models\CMSContent $mailDir, int $mailDirId): string
|
||||
public static function getCustomerMailName(\App\Models\CMSContent $mailDir, ?int $mailDirId): string
|
||||
{
|
||||
return MailDirService::getCustomerMailName($mailDir, $mailDirId);
|
||||
}
|
||||
|
||||
public static function getCustomerMailEmails(\App\Models\CMSContent $mailDir, int $mailDirId): array|string
|
||||
public static function getCustomerMailEmails(\App\Models\CMSContent $mailDir, ?int $mailDirId): array|string
|
||||
{
|
||||
return MailDirService::getCustomerMailEmails($mailDir, $mailDirId);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue