Skip to content

Commit

Permalink
Allow using doctrine/dbal ^3.0 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude authored Feb 15, 2023
1 parent ebd5770 commit b5fb917
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"doctrine/annotations": "^1.8",
"doctrine/cache": "^1.9.1",
"doctrine/common": "^2.11|^3.0",
"doctrine/dbal": "^2.9.3",
"doctrine/dbal": "^2.12|^3.0",
"doctrine/event-manager": "^1.1",
"doctrine/orm": "^2.7",
"doctrine/persistence": "^1.3|^2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testWorksWithInfrastructure()

$infrastructure->import(new TestEntity());

$this->assertEquals(1, $this->connection->fetchColumn('SELECT COUNT(*) FROM test_entity'));
$this->assertEquals(1, $this->connection->fetchOne('SELECT COUNT(*) FROM test_entity'));
}

}

0 comments on commit b5fb917

Please sign in to comment.