Retrieve the event loop driver that is in scope.
Driver
public static function getDriver() : Driver { /** @psalm-suppress RedundantPropertyInitializationCheck, RedundantCondition */ if (!isset(self::$driver)) { self::setDriver((new DriverFactory())->create()); } return self::$driver; }