PHP Classes

File: src/Graph/Confidence.php

Recommend this page to a friend!
  Packages of DeGraciaMathieu   PHP Dep   src/Graph/Confidence.php   Download  
File: src/Graph/Confidence.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: 23 days ago
Size: 318 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

namespace
PhpDep\Graph;

enum Confidence: string
{
    case
CERTAIN = 'certain'; // structural: extends, implements, use trait
   
case HIGH = 'high'; // type hints, docblocks
   
case MEDIUM = 'medium'; // instanceof, catch
   
case LOW = 'low'; // dynamic patterns
}