for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SavinMikhail\CommentsDensity\Comments;
final class TodoComment extends Comment
{
public const PATTERN = '/(?:\/\/|#|\/\*|\*|<!--).*?\btodo\b.*/i';
public const COLOR = 'yellow';
public const WEIGHT = -0.3;
public const COMPARISON_TYPE = '<=';
public const NAME = 'todo';
}