芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/qrafiqxcreativeagency.com/accounts/office/vendor/sentry/sentry/src/SentrySdk.php
*/ final class SentrySdk { /** * @var HubInterface|null The current hub */ private static $currentHub; /** * Constructor. */ private function __construct() { } /** * Initializes the SDK by creating a new hub instance each time this method * gets called. */ public static function init(): HubInterface { self::$currentHub = new Hub(); return self::$currentHub; } /** * Gets the current hub. If it's not initialized then creates a new instance * and sets it as current hub. */ public static function getCurrentHub(): HubInterface { if (null === self::$currentHub) { self::$currentHub = new Hub(); } return self::$currentHub; } /** * Sets the current hub. * * @param HubInterface $hub The hub to set */ public static function setCurrentHub(HubInterface $hub): HubInterface { self::$currentHub = $hub; return $hub; } }