REBELinBLUE\Deployer\CheckUrl::setUrlAttribute PHP Method

setUrlAttribute() public method

Define a mutator to set the status to untested if the URL changes.
public setUrlAttribute ( string $value )
$value string
    public function setUrlAttribute($value)
    {
        if (!array_key_exists('url', $this->attributes) || $value !== $this->attributes['url']) {
            $this->attributes['last_status'] = null;
        }
        $this->attributes['url'] = $value;
    }