PHP Classes

File: src/Pdo/Pagination/SortDirectionEnum.php

Recommend this page to a friend!
  Packages of Mohamed Abdulalim   Persistence   src/Pdo/Pagination/SortDirectionEnum.php   Download  
File: src/Pdo/Pagination/SortDirectionEnum.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Persistence
Retrieve database table records by a given order
Author: By
Last change:
Date: 20 days ago
Size: 161 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
Maatify\Persistence\Pdo\Pagination;

enum SortDirectionEnum: string
{
    case
ASC = 'ASC';
    case
DESC = 'DESC';
}