1 | <?php |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
2 | /** |
||
3 | * Copyright MediaCT. All rights reserved. |
||
4 | * https://www.mediact.nl |
||
5 | */ |
||
6 | |||
7 | namespace Johmanx10\Transaction; |
||
8 | |||
9 | interface DescribableOperationInterface extends OperationInterface |
||
10 | { |
||
11 | /** |
||
12 | * Describe the current operation. |
||
13 | * |
||
14 | * @return string |
||
15 | */ |
||
16 | public function __toString(): string; |
||
17 | } |
||
18 |