/**
 * Sets the global document language declaration. Default is English (en-gb).
 *
 * @param   string  $lang  The language to be set
 *
 * @return  Document instance of $this to allow chaining
 *
 * @since   1.7.0
 */
public function setLanguage($lang = 'en-gb')
{
    $this->language = strtolower($lang);
    return $this;
}