* @copyright 2012 - 2022 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 4.0.0 */ namespace Query; /** * 'Enum' of join types */ class LikeType { public final const BEFORE = 'before'; public final const AFTER = 'after'; public final const BOTH = 'both'; }