for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
/**
* This file is part of GitterBot package.
*
* @author Serafim <[email protected]>
* @date 28.03.2016 18:07
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Domains\Message;
use Core\Mappers\Message\RelationMapper;
* Class Relation
* @package Domains\Message
* @property-read Message $answer
* @property-read Message $question
class Relation extends RelationMapper
{
* @return string
public function getId()
return $this->id;
}