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