/**
 * Set the attribute
 *
 * @param   string  $key    An attribute key
 * @param   string  $value  An attribute value
 *
 * @return self
 *
 * @since   4.0.0
 */
public function setAttribute(string $key, $value = null) : WebAssetItemInterface
{
    $this->attributes[$key] = $value;
    return $this;
}