phpexpertsinc/PHPLOCAnalyzer

View on GitHub
src/DTOs/PHPLOC/CyclomaticDTO.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);

/**
 * This file is part of the PHPLOC Analyzer, a PHP Experts, Inc., Project.
 *
 * Copyright © 2020 PHP Experts, Inc.
 * Author: Theodore R. Smith <theodore@phpexperts.pro>
 *   GPG Fingerprint: 4BF8 2613 1C34 87AC D28F  2AD8 EB24 A91D D612 5690
 *   https://www.phpexperts.pro/
 *   https://github.com/PHPExpertsInc/PHPLOCAnalyzer
 *
 * This file is licensed under the MIT License.
 */

namespace PHPExperts\PHPLOCAnalyzer\DTOs\PHPLOC;

use PHPExperts\SimpleDTO\SimpleDTO;

/**
 * @internal
 *
 * @property float $lloc
 * @property float $class_avg
 * @property float $class_min
 * @property float $class_max
 * @property float $method_avg
 * @property float $method_min
 * @property float $method_max
 */
class CyclomaticDTO extends SimpleDTO
{
}