public static function parse()

in src/datetime/DateTime/Unzoned.php [92:100]


  public static function parse(
    string $str,
    ?Unzoned $relative_to = null,
  ): this {
    return self::fromTimestampImpl(
      Zone::UTC,
      Timestamp::parse(Zone::UTC, $str, $relative_to?->timestamp),
    );
  }