PHP Classes

File: src/Warning/WarningType.php

Recommend this page to a friend!
  Packages of DeGraciaMathieu   PHP Dep   src/Warning/WarningType.php   Download  
File: src/Warning/WarningType.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP Dep
Analyse the dependencies of classes in a project
Author: By
Last change:
Date: 22 days ago
Size: 244 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
PhpDep\Warning;

enum WarningType: string
{
    case
DYNAMIC_INSTANTIATION = 'dynamic_instantiation';
    case
DYNAMIC_CALL = 'dynamic_call';
    case
PARSE_ERROR = 'parse_error';
}