for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SavinMikhail\CommentsDensity\AnalyzeComments\Analyzer;
use SplFileInfo;
class FileTotalLinesCounter
{
public function run(SplFileInfo $file): int
return count(file($file->getRealPath()));
}