Query/src/MapType.php

31 lines
647 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
* Query
*
* SQL Query Builder / Database Abstraction Layer
*
2022-09-29 11:33:08 -04:00
* PHP version 8.1
*
* @package Query
2023-01-20 11:30:51 -05:00
* @author Timothy J. Warren <tim@timshome.page>
* @copyright 2012 - 2023 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat/Query
2023-03-17 16:34:21 -04:00
* @version 4.1.0
*/
2023-03-17 15:18:33 -04:00
namespace Query;
/**
2023-01-20 11:30:51 -05:00
* Enum of query map types
*/
2023-03-17 15:18:33 -04:00
enum MapType: string
{
2023-01-13 13:14:28 -05:00
case GROUP_END = 'group_end';
case GROUP_START = 'group_start';
case JOIN = 'join';
case LIKE = 'like';
case WHERE = 'where';
case WHERE_IN = 'where_in';
2023-03-17 15:18:33 -04:00
}