Your IP : 216.73.217.95


Current Path : /var/www/www.indacotrentino.com/www/app/code/Torresani/MessageQueue/Api/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/app/code/Torresani/MessageQueue/Api/MessageInterface.php

<?php

namespace Torresani\MessageQueue\Api;

//use Torresani\MessageQueue\Api\MessageInterface;

interface MessageInterface
{
    /**
     * @param string $message
     * @return void
     */
    public function setMessage($message);

    /**
     * @return string
     */
    public function getMessage();
}