1 | <?php |
||
10 | class Config |
||
11 | { |
||
12 | public $checkImages = true; |
||
13 | public $checkCSS = true; |
||
14 | public $checkJS = true; |
||
15 | public $showFullTags = false; |
||
16 | public $showOnlyProblems = false; |
||
17 | public $checkExternal = false; |
||
18 | public $reportEmail = null; |
||
19 | public $reportEmailFrom = null; |
||
20 | /** |
||
21 | * It's not okay to have links with whitespaces, but browsers |
||
22 | * usually fix it, so let's ignore it in most cases |
||
23 | */ |
||
24 | public $ignoreWhiteSpaces = true; |
||
25 | public $cookies = []; |
||
26 | public $excludedUrls = []; |
||
27 | public $includedUrls = []; |
||
28 | |||
29 | /** |
||
30 | * @return array |
||
31 | */ |
||
32 | public function getCookies() |
||
40 | |||
41 | /** |
||
42 | * @return array |
||
43 | */ |
||
44 | public function getReportEmailAddresses() |
||
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getMailFrom() |
||
67 | } |
||
68 |