Issues (33)

src/DescribableOperationInterface.php (1 issue)

1
<?php
0 ignored issues
show
Header blocks must be separated by a single blank line
Loading history...
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