| Current Path : /var/www/www.indacotrentino.com/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Baseline/ |
| Current File : /var/www/www.indacotrentino.com/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Baseline/BaselineMode.php |
<?php
namespace PHPMD\Baseline;
class BaselineMode
{
/**
* Do not generate or update any baseline file
*/
const NONE = 'none';
/**
* Generate a baseline file for _all_ current violations
*/
const GENERATE = 'generate';
/**
* Remove any non existing violations from the baseline file. Do not baseline any new violations.
*/
const UPDATE = 'update';
}