* @copyright 2012 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @link https://git.timshomepage.net/aviat/Query * @version 3.0.0 */ namespace Query; /** * Enum of join types */ enum JoinType: string { case CROSS = 'cross'; case INNER = 'inner'; case OUTER = 'outer'; case LEFT = 'left'; case RIGHT = 'right'; }