13 lines
304 B
PHP
13 lines
304 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace External\HannahBundle\Email;
|
|
|
|
class OCProfiPartnerRegistrationEmail extends OCRegistrationEmail
|
|
{
|
|
protected static $name = '[OC] Registrace partnera - typ PROFI';
|
|
protected static $type = 'OC_REGISTRATION_PROFI';
|
|
protected static $priority = -10;
|
|
}
|