for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Webklex\IMAP\Events;
use Webklex\PHPIMAP\Message;
class FlagNewEvent extends Event {
/** @var Message $message */
public $message;
/** @var string $flag */
public $flag;
/**
* Create a new event instance.
* @var mixed[] $arguments
* @return void
*/
public function __construct($arguments) {
$this->message = $arguments[0];
$this->flag = $arguments[1];
}