* @copyright Copyright (c) 2021 Stephen Nielson * @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3 */ namespace OpenEMR\Tests; class MockRestConfig { public static $FHIR_ROUTE_MAP; public static $systemScopesEnabled = false; public static function reset() { self::$FHIR_ROUTE_MAP = []; } public static function areSystemScopesEnabled() { return self::$systemScopesEnabled; } }