PHP code example of savinmikhail / comments-density
1. Go to this page and download the library: Download savinmikhail/comments-density library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
savinmikhail / comments-density example snippets
declare(strict_types=1);
use SavinMikhail\CommentsDensity\AnalyzeComments\Comments\FixMeComment;
use SavinMikhail\CommentsDensity\AnalyzeComments\Comments\RegularComment;
use SavinMikhail\CommentsDensity\AnalyzeComments\Comments\TodoComment;
use SavinMikhail\CommentsDensity\AnalyzeComments\Config\DTO\Config;
return new Config(
directories: [
'src',
],
thresholds: [
RegularComment::NAME => 0,
TodoComment::NAME => 0,
FixMeComment::NAME => 0,
],
);
bash
php vendor/bin/comments_density analyze
bash
php vendor/bin/comments_density baseline
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.