Closed dereuromark closed 2 years ago
Anyone wants to help out here?
The code should also be fixed up to
*/
public function &offsetGet($offset)
{
- if (isset($this->data[$offset])) {
- return $this->data[$offset];
- }
+ if (!isset($this->data[$offset])) {
+ return null;
+ }
+
+ return $this->data[$offset];
}
/**
But that is only possible if we can make this fix here happen first.
Refs https://github.com/propelorm/Propel2/issues/972
Lets see if that breaks something
Result: