Skip to content

Commit 186f0c7

Browse files
authored
Merge pull request #3719 from greg0ire/remove-phpunit-bridge-remnants
Remove phpunit-bridge specific annotations
2 parents 80a45c6 + 148aafc commit 186f0c7

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

tests/Doctrine/Tests/DBAL/Functional/PDOStatementTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ protected function setUp() : void
2828
$this->connection->getSchemaManager()->dropAndCreateTable($table);
2929
}
3030

31-
/**
32-
* @group legacy
33-
* @expectedDeprecation Using a PDO fetch mode or their combination (%d given) is deprecated and will cause an error in Doctrine 3.0.
34-
*/
3531
public function testPDOSpecificModeIsAccepted() : void
3632
{
3733
$this->connection->insert('stmt_test', [

tests/Doctrine/Tests/DBAL/Schema/ColumnTest.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,13 @@ public function testToArray() : void
6262
self::assertEquals($expected, $this->createColumn()->toArray());
6363
}
6464

65-
/**
66-
* @group legacy
67-
* @expectedDeprecation The "unknown_option" column option is not supported, setting it is deprecated and will cause an error in Doctrine 3.0
68-
*/
6965
public function testSettingUnknownOptionIsStillSupported() : void
7066
{
7167
$this->expectNotToPerformAssertions();
7268

7369
new Column('foo', $this->createMock(Type::class), ['unknown_option' => 'bar']);
7470
}
7571

76-
/**
77-
* @group legacy
78-
* @expectedDeprecation The "unknown_option" column option is not supported, setting it is deprecated and will cause an error in Doctrine 3.0
79-
*/
8072
public function testOptionsShouldNotBeIgnored() : void
8173
{
8274
$col1 = new Column('bar', Type::getType(Types::INTEGER), ['unknown_option' => 'bar', 'notnull' => true]);

0 commit comments

Comments
 (0)