PHP Classes

File: src/Doctor/Category.php

Recommend this page to a friend!
  Packages of Alberto Arena   Laravel Truss   src/Doctor/Category.php   Download  
File: src/Doctor/Category.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Laravel Truss
View a diagram of a Laravel application models
Author: By
Last change:
Date: 9 days ago
Size: 372 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
AlbertoArena\Truss\Doctor;

/**
 * The rule groups. The string value is the token users pass to `--only` and
 * `--skip`, so it is part of the CLI contract.
 */
enum Category: string
{
    case
Integrity = 'integrity';
    case
Index = 'index';
    case
Type = 'type';
    case
Naming = 'naming';
    case
Laravel = 'laravel';
}