hold-the-door/ravens

View on GitHub
src/Hodor/MessageQueue/Adapter/MessageInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Hodor\MessageQueue\Adapter;

interface MessageInterface
{
    /**
     * @return mixed
     */
    public function getContent();

    public function acknowledge();
}