PHP Classes

File: src/Enums/LogicalOperator.php

Recommend this page to a friend!
  Packages of Stefano D'Agostino   ATON Format PHP   src/Enums/LogicalOperator.php   Download  
File: src/Enums/LogicalOperator.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: ATON Format PHP
Encode and decode values using the ATON format
Author: By
Last change:
Date: 3 months ago
Size: 204 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Aton\Enums;

/**
 * Logical operators for query expressions
 */
enum LogicalOperator: string
{
    case AND =
'AND';
    case OR =
'OR';
    case
NOT = 'NOT';
}