public static function parse()

in src/datetime/DateTime/Zoned.php [136:145]


  public static function parse(
    Zone $timezone,
    string $str,
    ?Instant $relative_to = null,
  ): this {
    return Zoned::fromTimestampImpl(
      $timezone,
      Timestamp::parse($timezone, $str, $relative_to?->getTimestamp()),
    );
  }