mirror of
https://github.com/retailcrm/transparent-email.git
synced 2025-02-16 23:03:14 +03:00
26 lines
417 B
PHP
26 lines
417 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace bkrukowski\TransparentEmail\Services;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
class TlenPl extends MultiDomain
|
|
{
|
|
protected function getDomainList() : array
|
|
{
|
|
return [
|
|
'o2.pl',
|
|
'tlen.pl',
|
|
'go2.pl',
|
|
'prokonto.pl',
|
|
];
|
|
}
|
|
|
|
protected function getPrimaryDomain() : string
|
|
{
|
|
return 'o2.pl';
|
|
}
|
|
} |