| Total Complexity | 2 | 
| Total Lines | 21 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php | ||
| 10 | final class HttpSlackClient implements SlackClientInterface | ||
| 11 | { | ||
| 12 | public const SLACK_API_POST_MESSAGE = 'https://slack.com/api/chat.postMessage'; | ||
| 13 | |||
| 14 | private HttpClientInterface $client; | ||
| 15 | |||
| 16 | 1 | public function __construct(HttpClientInterface $client) | |
| 19 | 1 | } | |
| 20 | |||
| 21 | 1 | public function postToChannel(string $channel, string $text): ResponseInterface | |
| 36 |