Skip to content
Snippets Groups Projects
Unverified Commit 4ef1ace6 authored by DaveD's avatar DaveD Committed by GitHub
Browse files

Merge pull request #23580 from colemanw/removeDeprecatedClass

Remove unused class
parents c5a6fdf7 a49edb1b
No related branches found
No related tags found
No related merge requests found
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
*
* @package CRM
* @copyright CiviCRM LLC https://civicrm.org/licensing
*/
/**
* Class CRM_Utils_Geocode
*/
class CRM_Utils_Geocode {
/**
* @deprecated
*
* @todo Remove this method. In case people are calling this downstream (which
* is unsupported usage), we'll deprecate it for a few releases before
* removing it altogether.
*
* @return string|''
* Class name, or empty.
*/
public static function getProviderClass() {
CRM_Core_Error::deprecatedWarning('CRM_Utils_Geocode is deprecated and will be removed from core soon, use CRM_Utils_GeocodeProvider::getUsableClassName()');
return (string) CRM_Utils_GeocodeProvider::getUsableClassName();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment