fullybaked/pslackr

View on GitHub
src/FullyBaked/Pslackr/Transport.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace FullyBaked\Pslackr;

interface Transport
{
    /**
     * must POST the $message to the Slack incoming-webhook
     */
    public function send(Messages\Message $message);
}