@@ -248,7 +248,7 @@ public function testRawSqlFilterCountriesByUserCount(): void
248
248
GROUP BY country.id
249
249
HAVING COUNT(users.id) > 1;
250
250
SQL ;
251
- /** @var Test\Dao\Bean\CountryBean[]|\Porpaginas\Result $beans */
251
+ /** @var Test\Dao\Bean\CountryBean[]|ResultInterface $beans */
252
252
$ beans = $ this ->tdbmService ->findObjectsFromRawSql ('country ' , $ sql , [], null , Test \Dao \Bean \CountryBean::class, null , CountryResultIterator::class);
253
253
254
254
$ count = 0 ;
@@ -271,7 +271,7 @@ public function testRawSqlOrderCountriesByUserCount(): void
271
271
ORDER BY COUNT(users.id);
272
272
SQL ;
273
273
274
- /** @var Test\Dao\Bean\CountryBean[]|\Porpaginas\Result $beans */
274
+ /** @var Test\Dao\Bean\CountryBean[]|ResultInterface $beans */
275
275
$ beans = $ this ->tdbmService ->findObjectsFromRawSql ('country ' , $ sql , [], null , Test \Dao \Bean \CountryBean::class, null , CountryResultIterator::class);
276
276
277
277
$ count = 0 ;
@@ -300,7 +300,7 @@ public function testRawSqlOrderUsersByCustomRoleOrder(): void
300
300
ORDER BY MAX(IF(roles.name = 'Admins', 3, IF(roles.name = 'Writers', 2, IF(roles.name = 'Singers', 1, 0)))) DESC
301
301
SQL ;
302
302
303
- /** @var Test\Dao\Bean\UserBean[]|\Porpaginas\Result $beans */
303
+ /** @var Test\Dao\Bean\UserBean[]|ResultInterface $beans */
304
304
$ beans = $ this ->tdbmService ->findObjectsFromRawSql ('contact ' , $ sql , [], null , Test \Dao \Bean \UserBean::class, null , UserResultIterator::class);
305
305
306
306
function getCustomOrder (Test \Dao \Bean \UserBean $ contact )
0 commit comments