<?php
namespace gnomephp\crud;
/**
* Implemented to entity if you want to run onUpdate() method when crud is updating the entity.
* @author peec
*
*/
interface OnUpdateListener{
/**
* This method will be runned on the object when record is updated.
*/
public function onUpdate();
}