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