* @copyright 2012 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 4.1.0 */ namespace Query; /** * Enum of query map types */ enum MapType: string { case GROUP_END = 'group_end'; case GROUP_START = 'group_start'; case JOIN = 'join'; case LIKE = 'like'; case WHERE = 'where'; case WHERE_IN = 'where_in'; }