Jyxo\Beholder\TestCase\Imap::__construct PHP Method

__construct() public method

Constructor.
public __construct ( string $description, string $host = 'localhost', string $user = '', string $password = '', integer $port = 143, boolean $validateCert = true )
$description string Test description
$host string Server hostname
$user string Username
$password string Password
$port integer Port
$validateCert boolean Validate certificates
    public function __construct(string $description, string $host = 'localhost', string $user = '', string $password = '', int $port = 143, bool $validateCert = true)
    {
        parent::__construct($description);
        $this->host = $host;
        $this->user = $user;
        $this->password = $password;
        $this->port = $port;
        $this->validateCert = $validateCert;
    }