silverstripe-externallinks/src/Tasks/LinkChecker.php

19 lines
381 B
PHP
Raw Normal View History

2014-08-07 03:56:15 +02:00
<?php
namespace SilverStripe\ExternalLinks\Tasks;
2014-08-07 03:56:15 +02:00
/**
* Provides an interface for checking that a link is valid
*/
interface LinkChecker
{
/**
* Determine the http status code for a given link
*
* @param string $href URL to check
* @return int HTTP status code, or null if not checkable (not a link)
*/
public function checkLink($href);
2014-08-07 03:56:15 +02:00
}