Sure.
There is some issue with MongoCollection in the Incubator with PHP 7.1.
One of the issues is with the reserved words when saving. ref: here and here
In Phalcon\Mvc\Collection, the base class of MongoCollection
, _reserved
is declared on line 59: protected static _reserved;
then tested later:
var reserved;
let reserved = self::_reserved;
if reserved === null {...
Been reading that Zephir tries to do type inference, so maybe _reserved
gets []
instead of null
.
That said, I am just now looking at Zephir.