wol-soft/php-workflow

View on GitHub
src/State/ExecutionLog/Describable.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

declare(strict_types=1);

namespace PHPWorkflow\State\ExecutionLog;

/**
 * Interface Describable
 *
 * @package PHPWorkflow\State\ExecutionLog
 */
interface Describable
{
    /**
     * Describe in a few words what this step does
     */
    public function getDescription(): string;
}