Details
Description
In the EntityGenerator when the id setting has a generator of NONE it does not add the stub method for setting the id keys value, here's my fix:
around line 478 in the _generateEntityStubMethods function, the first foreach which checks for the id mapping, change:
if ( ! isset($fieldMapping['id']) || ! $fieldMapping['id']) {
TO
if ( ! isset($fieldMapping['id']) || ! $fieldMapping['id'] || ($this->_getIdGeneratorTypeString($metadata->generatorType) == 'NONE')) {
Fixed