Query/apiDocumentation/files/src/LikeType.php.txt

38 lines
695 B
Plaintext
Raw Normal View History

2023-01-20 11:30:51 -05:00
<?php declare(strict_types=1);
/**
* Query
*
* SQL Query Builder / Database Abstraction Layer
*
* PHP version 8.1
*
* @package Query
* @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:59 -04:00
* @version 4.1.0
2023-01-20 11:30:51 -05:00
*/
2023-03-17 16:28:07 -04:00
2023-01-20 11:30:51 -05:00
namespace Query;
/**
* 'Enum' of join types
*/
2023-03-17 16:28:07 -04:00
enum LikeType: string
{
2023-01-20 11:30:51 -05:00
case BEFORE = 'before';
case AFTER = 'after';
case BOTH = 'both';
2023-03-17 16:28:07 -04:00
public static function parse(string|self $val): self
{
2023-01-20 11:30:51 -05:00
if ($val instanceof self)
{
return $val;
}
return self::from($val);
}
2023-03-17 16:28:07 -04:00
}