ClientEntityTypeExtension::getExtendedTypes()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 2
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
3
/*
4
 * This file is part of the SaasProviderBundle package.
5
 * (c) Fluxter <http://fluxter.net/>
6
 * For the full copyright and license information, please view the LICENSE
7
 * file that was distributed with this source code.
8
 */
9
10
namespace Fluxter\SaasProviderBundle\Form\Extension;
11
12
use Fluxter\SaasProviderBundle\Form\Type\ClientEntityType;
13
use Symfony\Component\Form\AbstractTypeExtension;
14
15
class ClientEntityTypeExtension extends AbstractTypeExtension
16
{
17
    public function buildForm(\Symfony\Component\Form\FormBuilderInterface $builder, array $options)
18
    {
19
        parent::buildForm($builder, $options);
20
    }
21
22
    public static function getExtendedTypes(): iterable
23
    {
24
        return [
25
            ClientEntityType::class,
26
        ];
27
    }
28
}
29