Added config annotations to CurlLinkChecker

This commit is contained in:
Kirk Mayo 2018-02-03 13:55:22 +13:00
parent 0354be75d8
commit 9e9946ef64
1 changed files with 18 additions and 0 deletions

View File

@ -5,6 +5,24 @@
*/
class CurlLinkChecker implements LinkChecker {
/**
* If we want to follow redirects a 301 http code for example
* Set via YAML file
*
* @config
* @var boolean
*/
private static $FollowLocation = false;
/**
* If we want to bypass the cache
* Set via YAML file
*
* @config
* @var boolean
*/
private static $BypassCache = false;
/**
* Return cache
*