xpdo
xpdo copied to clipboard
xPDO Object Relational Bridge for PHP
Results
62
xpdo issues
Sort by
recently updated
recently updated
newest added
xPDO 2.x has issues with zero length files in PHP 8.x. The same code works fine in PHP 7.x. The same issue may occur with xPDO 3.x. ``` PHP Fatal...
Expected behavior: ``` $query = $xpdo->newQuery(::class); $query->setClassAlias('A'); $query->innerJoin(::class>, 'B', ['B.fk_id = A.id']); $iterator = $xpdo->getIterator(::class, $query); ... (expect objects retrieved in the $iterator to have successfully run the innerJoin) ```...