Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/phpmd/phpmd/src/main/php/PHPMD/Baseline/
Upload File :
Current File : //home/rtorresani/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';
}