Failed Conditions
Pull Request — master (#3087)
by Grégoire
117:30 queued 52:53
created

ColumnTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testThatIsGoingToBeRisky() 0 3 1
1
<?php
2
3
namespace Doctrine\Tests\DBAL\Schema;
4
5
use Doctrine\DBAL\Foo;
6
7
class ColumnTest extends \PHPUnit\Framework\TestCase
8
{
9
    /**
10
     * @group legacy
11
     * @expectedDeprecation Hello
12
     */
13
    public function testThatIsGoingToBeRisky() : void
14
    {
15
        new Foo();
16
    }
17
}
18