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