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