![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-db/src/TableGateway/Feature/ |
<?php namespace Laminas\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. */ interface EventFeatureEventsInterface { public const EVENT_PRE_INITIALIZE = 'preInitialize'; public const EVENT_POST_INITIALIZE = 'postInitialize'; public const EVENT_PRE_SELECT = 'preSelect'; public const EVENT_POST_SELECT = 'postSelect'; public const EVENT_PRE_INSERT = 'preInsert'; public const EVENT_POST_INSERT = 'postInsert'; public const EVENT_PRE_DELETE = 'preDelete'; public const EVENT_POST_DELETE = 'postDelete'; public const EVENT_PRE_UPDATE = 'preUpdate'; public const EVENT_POST_UPDATE = 'postUpdate'; }