Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
Config
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace NSFileRepo;
4
5class Config extends \GlobalVarConfig {
6    const CONFIG_SKIP_TALK = 'SkipTalk';
7    const CONFIG_THRESHOLD = 'NamespaceThreshold';
8    const CONFIG_BLACKLIST = 'NamespaceBlacklist';
9
10    public function __construct() {
11        parent::__construct( 'egNSFileRepo' );
12    }
13}