1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Console; |
4: | |
5: | interface ConsoleMessageFormatInterface |
6: | { |
7: | /** |
8: | * Format a message before it is written to the target |
9: | */ |
10: | public function apply( |
11: | string $msg1, |
12: | ?string $msg2, |
13: | string $prefix, |
14: | ConsoleMessageAttributesInterface $attributes |
15: | ): string; |
16: | } |
17: |