Issues (3)

lib/SaferpayJson/Request/RequestCommonsTrait.php (2 issues)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Ticketpark\SaferpayJson\Request;
6
7
trait RequestCommonsTrait
8
{
9
    public function getApiPath(): string
10
    {
11
        return self::API_PATH;
0 ignored issues
show
The constant Ticketpark\SaferpayJson\...tCommonsTrait::API_PATH was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
12
    }
13
14
    public function getResponseClass(): string
15
    {
16
        return self::RESPONSE_CLASS;
0 ignored issues
show
The constant Ticketpark\SaferpayJson\...nsTrait::RESPONSE_CLASS was not found. Maybe you did not declare it correctly or list all dependencies?
Loading history...
17
    }
18
}
19