Query/src/JoinType.php

27 lines
662 B
PHP
Raw Normal View History

2020-04-23 18:16:32 -04:00
<?php declare(strict_types=1);
/**
* Query
*
* SQL Query Builder / Database Abstraction Layer
*
2022-09-29 11:33:08 -04:00
* PHP version 8.1
2020-04-23 18:16:32 -04:00
*
* @package Query
* @author Timothy J. Warren <tim@timshomepage.net>
2022-09-29 11:33:08 -04:00
* @copyright 2012 - 2022 Timothy J. Warren
2020-04-23 18:16:32 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat/Query
2022-09-29 11:33:08 -04:00
* @version 4.0.0
2020-04-23 18:16:32 -04:00
*/
namespace Query;
/**
* 'Enum' of join types
*/
class JoinType {
public final const CROSS = 'cross';
public final const INNER = 'inner';
public final const OUTER = 'outer';
public final const LEFT = 'left';
public final const RIGHT = 'right';
2020-04-23 18:16:32 -04:00
}