Sim
Well-known member
- Affected version
- 2.0.4
Service creators for Media, Album and TranscodeEnqueuer declare their
Code affected:
_save()
function as public
, where all other service creators I checked use protected
.Code affected:
XFMG\Service\Media\Creator::_save()
XFMG\Service\Album\Creator::_save()
XFMG\Service\Media\TranscodeEnqueuer::_save()
_save()
function should be called is from the trait code XF\Service\ValidateAndSavableTrait::save()
, so we really should not be exposing this function as public?