baseline
This commit is contained in:
18
lib/Service/MailLogService.php
Normal file
18
lib/Service/MailLogService.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace MintyPHP\Service;
|
||||
|
||||
use MintyPHP\Repository\MailLogRepository;
|
||||
|
||||
class MailLogService
|
||||
{
|
||||
public static function listPaged(array $options): array
|
||||
{
|
||||
return MailLogRepository::listPaged($options);
|
||||
}
|
||||
|
||||
public static function find(int $id): ?array
|
||||
{
|
||||
return MailLogRepository::find($id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user