Passed
Push — develop ( 7908ff...7917fe )
by Ludwig
02:28
created

StringType::configureOptions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 13
Code Lines 8

Duplication

Lines 13
Ratio 100 %

Importance

Changes 0
Metric Value
dl 13
loc 13
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 8
nc 1
nop 1
1
<?php
2
/*
3
 * This file is part of cwdFancyGridBundle
4
 *
5
 * (c)2017 cwd.at GmbH <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
declare(strict_types=1);
11
namespace Cwd\FancyGridBundle\Column;
12
use Symfony\Component\OptionsResolver\OptionsResolver;
13
14
/**
15
 * Class TextType
16
 * @package Cwd\FancyGridBundle\Column
17
 * @author Ludwig Ruderstaler <[email protected]>
18
 * @deprecated Use TextType
19
 */
20
class StringType extends TextType
21
{
22
}
23