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 types
21 */
22enum QueryType: string
23{
24    case SELECT = 'select';
25
26    case INSERT = 'insert';
27
28    case INSERT_BATCH = 'insert_batch';
29
30    case UPDATE = 'update';
31
32    case UPDATE_BATCH = 'update_batch';
33
34    case DELETE = 'delete';
35}