for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Obblm\Core\Message;
use Symfony\Component\Mime\Email;
class EmailMessage
{
private $content;
public function __construct(Email $content)
$this->content = $content;
}
public function getContent(): Email
return $this->content;