Triggered just before LemonStand is updated.
This event is triggered after
core:onBeforeSoftwareUpdateRequest and
core:onAfterSoftwareUpdateRequest events,
when the update manager already received all required data from LemonStand update gateway.
Usage example:
public function subscribeEvents()
{
Backend::$events->addEvent('core:onBeforeSoftwareUpdate', $this, 'before_software_update');
}
public function before_software_update()
{
// Do something
}