/**
 * Generate a media version string for assets
 * Public to allow third party developers to use it
 *
 * @return  string
 *
 * @since   3.2
 */
public function generateMediaVersion() : string
{
    return md5($this->getLongVersion() . Factory::getApplication()->get('secret') . (new Date())->toSql());
}