JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "DNSRecords.php"
Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/egulias/email-validator/src/Validation/DNSRecords.php
File size: 461 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Egulias\EmailValidator\Validation;
class DNSRecords
{
/**
* @param array $records
* @param bool $error
*/
public function __construct(private readonly array $records, private readonly bool $error = false)
{
}
/**
* @return array
*/
public function getRecords(): array
{
return $this->records;
}
public function withError(): bool
{
return $this->error;
}
}