Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php declare(strict_types=1);
2/**
3 * Query
4 *
5 * SQL Query Builder / Database Abstraction Layer
6 *
7 * PHP version 8.1
8 *
9 * @package     Query
10 * @author      Timothy J. Warren <tim@timshome.page>
11 * @copyright   2012 - 2023 Timothy J. Warren
12 * @license     http://www.opensource.org/licenses/mit-license.html  MIT License
13 * @link        https://git.timshomepage.net/aviat/Query
14 * @version     4.0.0
15 */
16
17namespace Query;
18
19/**
20 * Enum of query map types
21 */
22enum MapType: string
23{
24    case GROUP_END = 'group_end';
25
26    case GROUP_START = 'group_start';
27
28    case JOIN = 'join';
29
30    case LIKE = 'like';
31
32    case WHERE = 'where';
33
34    case WHERE_IN = 'where_in';
35}