Issues (46)

server/Application/Repository/LogRepository.php (1 issue)

Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Application\Repository;
6
7
use Application\Model\Log;
8
9
/**
10
 * @extends AbstractRepository<Log>
11
 */
12
class LogRepository extends AbstractRepository implements \Ecodev\Felix\Repository\LogRepository
13
{
14
    /**
15
     * Log message to be used when the datatrans webhook starts.
16
     */
17
    final public const DATATRANS_WEBHOOK_BEGIN = 'datatrans webhook begin';
18
    /**
19
     * Log message to be used when the datatrans webhook finishes.
20
     */
21
    final public const DATATRANS_WEBHOOK_END = 'datatrans webhook end';
22
23
    use \Ecodev\Felix\Repository\Traits\LogRepository;
0 ignored issues
show
The trait Ecodev\Felix\Repository\Traits\LogRepository requires some properties which are not provided by Application\Repository\LogRepository: $context, $datetime, $extra, $message, $value, $level
Loading history...
24
}
25