13 lines
220 B
PHP
13 lines
220 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\B2BBundle\View;
|
|
|
|
use KupShop\ContentBundle\View\ContactFormView;
|
|
|
|
class B2BContactForm extends ContactFormView
|
|
{
|
|
protected $formType = 'registration-b2b-default';
|
|
}
|