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

CustomCaptchaConfigurator::configureClient()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 3
dl 0
loc 2
rs 10
c 0
b 0
f 0
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
}