Skip to content

Commit

Permalink
fix: phpcs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanrajpac committed Jun 26, 2024
1 parent 995e2de commit 9ed4a9d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/BadgeComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Exception;
use SimpleXMLElement;
use Throwable;
use function array_sum;
use function count;
use function explode;
use function file_exists;
Expand All @@ -29,6 +30,9 @@ class BadgeComposer
private string $outputFile;
private string $coverageName;
private string $badgeTemplate = __DIR__ . '/../template/badge.svg';
/**
* @var int[]
*/
private array $totalCoverage = [];
private int $totalConditionals = 0;
private int $coveredConditionals = 0;
Expand Down

0 comments on commit 9ed4a9d

Please sign in to comment.