39 lines
No EOL
580 B
Text
39 lines
No EOL
580 B
Text
<?php
|
|
/**
|
|
* @author clivern <hello@clivern.com>
|
|
*/
|
|
|
|
namespace Clivern\Imap\Core\Message;
|
|
|
|
use Clivern\Imap\Core\Connection;
|
|
|
|
/**
|
|
* Actions Class
|
|
*
|
|
* @package Clivern\Imap\Core\Message
|
|
*/
|
|
class Actions
|
|
{
|
|
|
|
/**
|
|
* @var Connection
|
|
*/
|
|
protected $connection;
|
|
|
|
/**
|
|
* @var integer
|
|
*/
|
|
protected $message_number;
|
|
|
|
/**
|
|
* @var integer
|
|
*/
|
|
protected $message_uid;
|
|
|
|
public function __construct(Connection $connection, $message_number, $message_uid)
|
|
{
|
|
$this->connection = $connection;
|
|
$this->message_number = $message_number;
|
|
$this->message_uid = $message_uid;
|
|
}
|
|
} |