. */ namespace Doctrine\DBAL; /** * Container for all DBAL events. * * This class cannot be instantiated. * * @author Roman Borschel * @since 2.0 */ final class Events { private function __construct() {} const preExec = 'preExec'; const postExec = 'postExec'; const preExecute = 'preExecute'; const postExecute = 'postExecute'; }