| Total Complexity | 0 |
| Total Lines | 12 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 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; |
||
|
|
|||
| 24 | } |
||
| 25 |