forked from fa/breadcrumb-the-shire
19 lines
339 B
PHP
19 lines
339 B
PHP
<?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);
|
|
}
|
|
}
|