We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 113bf8e commit f5a7a62Copy full SHA for f5a7a62
composer.json
@@ -17,7 +17,7 @@
17
],
18
"require": {
19
"php": ">=7.0",
20
- "doctrine/orm": "2.5.*",
+ "doctrine/orm": "2.5.*|2.6.*",
21
"illuminate/auth": "5.5.*|5.6.*",
22
"illuminate/console": "5.5.*|5.6.*",
23
"illuminate/container": "5.5.*|5.6.*",
tests/Pagination/PaginatorAdapterTest.php
@@ -88,6 +88,7 @@ private function mockEntityManager()
88
89
$connection->shouldReceive('getDatabasePlatform')->andReturn($platform);
90
$connection->shouldReceive('executeQuery')->andReturn([]);
91
+ $connection->shouldReceive('getParams')->andReturn([]);
92
93
$platform->shouldReceive('appendLockHint')->andReturnUsing(function ($a) {
94
return $a;
0 commit comments