for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Jean Silva <[email protected]>
* @license MIT
*/
namespace Jeancsil\FlightSpy\Notifier\Email;
use Jeancsil\FlightSpy\Notifier\Notification;
class EmailNotification implements Notification
{
* @var string
public $from;
public $to;
public $subject;
public $text;
public $html;
* @var bool
public $ready = false;
* @return boolean
public function isReady()
return $this->ready === true;
}