PHP Classes

File: src/app/Enums/BusinessDomainCategory.php

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   src/app/Enums/BusinessDomainCategory.php   Download  
File: src/app/Enums/BusinessDomainCategory.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 570 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
App\Enums;

/**
 * Represents the classification of business domains.
 *
 * This enumeration includes the following classifications:
 * - Core: Represents the core domains that are central to the business.
 * - Generic: Represents domains that are standard or common across different
 * businesses.
 * - Supporting: Represents domains that provide support or auxiliary functions
 * for the core operations.
 */
enum BusinessDomainCategory: string
{
    case
Core = 'C';
    case
Generic = 'G';
    case
Supporting = 'S';
}