Triggered after a customer is updated.
Usage example:
public function subscribeEvents()
{
Backend::$events->addEvent('shop:onCustomerUpdated', $this, 'customer_updated');
}
public function customer_updated($customer)
{
if ($customer->fetched['first_name'] != $customer->first_name)
// Do something
}