Passed
Push — master ( 8eea92...da79af )
by Dāvis
03:03
created

CustomCaptchaConfigurator   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A configureClient() 0 2 1
A buildConfiguration() 0 2 1
1
<?php
2
3
namespace Sludio\HelperBundle\Captcha\Configurator;
4
5
use Symfony\Component\Config\Definition\Builder\NodeBuilder;
6
use Symfony\Component\DependencyInjection\ContainerBuilder;
7
8
class CustomCaptchaConfigurator implements CaptchaConfiguratorInterface
9
{
10
11
    public function buildConfiguration(NodeBuilder $node)
12
    {
13
14
    }
15
16
    public function configureClient(ContainerBuilder $container, $clientServiceKey, array $options = [])
17
    {
18
19
    }
20
}