Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
5 / 5 |
Acknowledgement | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
3 | |
100.00% |
5 / 5 |
setAcknowledgement | |
100.00% |
1 / 1 |
2 | |
100.00% |
4 / 4 |
|||
getAcknowledgement | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
<?php | |
/** | |
* src/Directives/Acknowledgement.php | |
* | |
* @package php-security-txt | |
* @author Austin Heap <me@austinheap.com> | |
* @version v0.4.0 | |
*/ | |
declare(strict_types = 1); | |
namespace AustinHeap\Security\Txt\Directives; | |
use AustinHeap\Security\Txt\SecurityTxt; | |
use Exception; | |
/** | |
* Acknowledgement | |
* | |
* @link https://github.com/austinheap/php-security-txt | |
* @link https://packagist.org/packages/austinheap/php-security-txt | |
* @link https://austinheap.github.io/php-security-txt/classes/AustinHeap.Security.Txt.SecurityTxt.html | |
* @link https://securitytext.org/ | |
*/ | |
trait Acknowledgement | |
{ | |
/** | |
* The acknowledgement URL. | |
* | |
* @var string | |
*/ | |
protected $acknowledgement = null; | |
/** | |
* Set the acknowledgement URL. | |
* | |
* @param string $acknowledgement | |
* | |
* @return SecurityTxt | |
*/ | |
public function setAcknowledgement(string $acknowledgement): SecurityTxt | |
{ | |
if (filter_var($acknowledgement, FILTER_VALIDATE_URL) === false) { | |
throw new Exception('Acknowledgement must be a well-formed URL.'); | |
} | |
$this->acknowledgement = $acknowledgement; | |
return $this; | |
} | |
/** | |
* Get the acknowledgement URL. | |
* | |
* @return string | |
*/ | |
public function getAcknowledgement(): string | |
{ | |
return $this->acknowledgement; | |
} | |
} |