<?php/** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */namespaceZend\Db\TableGateway\Feature;/** * EventFeature event constants. * * This moves the constants introduced in {@link https://github.com/zendframework/zf2/pull/7066} * into a separate interface that EventFeature implements; the change keeps * backwards compatibility, while simultaneously removing the need to add * another hard dependency to the component. */interfaceEventFeatureEventsInterface{constEVENT_PRE_INITIALIZE='preInitialize';constEVENT_POST_INITIALIZE='postInitialize';constEVENT_PRE_SELECT='preSelect';constEVENT_POST_SELECT='postSelect';constEVENT_PRE_INSERT='preInsert';constEVENT_POST_INSERT='postInsert';constEVENT_PRE_DELETE='preDelete';constEVENT_POST_DELETE='postDelete';constEVENT_PRE_UPDATE='preUpdate';constEVENT_POST_UPDATE='postUpdate';}