An error occurred during processing; checking has been aborted. The error message was: implode(): Passing glue string after array is deprecated. Swap the parameters in /home/scrutinizer/build/vendor/squizlabs/php_codesniffer/src/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php on line 468
Loading history...
2
/**
3
* Copyright MediaCT. All rights reserved.
4
* https://www.mediact.nl
5
*/
6
7
namespace Johmanx10\Transaction\Formatter;
8
9
use Johmanx10\Transaction\DescribableOperationInterface;
10
use Johmanx10\Transaction\OperationInterface;
11
12
class OperationFormatter implements OperationFormatterInterface
13
{
14
/**
15
* Format the given operation into a readable string.
16
*
17
* @param OperationInterface $operation
18
*
19
* @return string
20
*/
21
2
public function format(OperationInterface $operation): string