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
Bug
introduced
by
![]() |
|||
12 | } |
||
13 | |||
14 | public function getResponseClass(): string |
||
15 | { |
||
16 | return self::RESPONSE_CLASS; |
||
0 ignored issues
–
show
|
|||
17 | } |
||
18 | } |
||
19 |