1<?php declare(strict_types = 1); 2 3namespace Contributte\Logging\Slack\Formatter; 4 5use Throwable; 6 7interface IFormatter 8{ 9 10 public function format(SlackContext $context, Throwable $message, string $priority): SlackContext; 11 12}