get_weather_temp( $data['current']['temp'] ); // phpcs:ignore ?>
get_weather_svg_icon( $data['current']['code'], true, $data['current']['is_day'] ); // phpcs:ignore ?>
get_weather_desc( $data['current']['code'], $data['current']['is_day'] ); // phpcs:ignore ?>
get_weather_svg_icon( 'humidity' ); // phpcs:ignore ?>
get_weather_svg_icon( 'sunrise' ); // phpcs:ignore ?>
get_weather_astro_time( $data['current']['sunrise'] ); // phpcs:ignore ?>
get_weather_temp( $data['current']['temp_min'] ) ); // phpcs:ignore
?>
get_weather_svg_icon( 'pressure' ); // phpcs:ignore ?>
get_weather_pressure( $data['current']['pressure'] ); // phpcs:ignore ?>
get_weather_svg_icon( 'sunset' ); // phpcs:ignore ?>
get_weather_astro_time( $data['current']['sunset'] ); // phpcs:ignore ?>
get_weather_temp( $data['current']['temp_max'] ) ); // phpcs:ignore
?>
get_weather_svg_icon( 'wind' ); // phpcs:ignore ?>
get_wind( $data['current']['wind_speed'], $data['current']['wind_dir'] ); // phpcs:ignore ?>