File tree Expand file tree Collapse file tree 3 files changed +48
-0
lines changed
Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace ProgrammatorDev \OpenWeatherMap \MeasurementSystem ;
4+
5+ class Fahrenheit
6+ {
7+ public const ATMOSPHERIC_PRESSURE_UNIT = 'hPa ' ;
8+ public const CLOUDINESS_UNIT = '% ' ;
9+ public const HUMIDITY_UNIT = '% ' ;
10+ public const POLLUTANT_CONCENTRATION_UNIT = 'μg/m3 ' ;
11+ public const PRECIPITATION_UNIT = 'mm ' ;
12+ public const PRECIPITATION_PROBABILITY_UNIT = '% ' ;
13+ public const SPEED_UNIT = 'mph ' ;
14+ public const TEMPERATURE_UNIT = '°F ' ;
15+ public const VISIBILITY_UNIT = 'km ' ;
16+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace ProgrammatorDev \OpenWeatherMap \MeasurementSystem ;
4+
5+ class Imperial
6+ {
7+ public const ATMOSPHERIC_PRESSURE_UNIT = 'hPa ' ;
8+ public const CLOUDINESS_UNIT = '% ' ;
9+ public const HUMIDITY_UNIT = '% ' ;
10+ public const POLLUTANT_CONCENTRATION_UNIT = 'μg/m3 ' ;
11+ public const PRECIPITATION_UNIT = 'mm ' ;
12+ public const PRECIPITATION_PROBABILITY_UNIT = '% ' ;
13+ public const SPEED_UNIT = 'm/s ' ;
14+ public const TEMPERATURE_UNIT = '°C ' ;
15+ public const VISIBILITY_UNIT = 'km ' ;
16+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ namespace ProgrammatorDev \OpenWeatherMap \MeasurementSystem ;
4+
5+ class Standard
6+ {
7+ public const ATMOSPHERIC_PRESSURE_UNIT = 'hPa ' ;
8+ public const CLOUDINESS_UNIT = '% ' ;
9+ public const HUMIDITY_UNIT = '% ' ;
10+ public const POLLUTANT_CONCENTRATION_UNIT = 'μg/m3 ' ;
11+ public const PRECIPITATION_UNIT = 'mm ' ;
12+ public const PRECIPITATION_PROBABILITY_UNIT = '% ' ;
13+ public const SPEED_UNIT = 'm/s ' ;
14+ public const TEMPERATURE_UNIT = 'K ' ;
15+ public const VISIBILITY_UNIT = 'km ' ;
16+ }
You can’t perform that action at this time.
0 commit comments