Skip to content

Commit 145fee8

Browse files
committed
minor fix + php-cs-fixer
1 parent 1c1fbcc commit 145fee8

File tree

5 files changed

+5
-7
lines changed

5 files changed

+5
-7
lines changed

src/Device/DeviceProfile.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,6 @@ class DeviceProfile extends AbstractEnum
747747
public const SUUNTO_RUN = 722;
748748
public const GARMIN_VENU_2_MERCEDES_BENZ = 723;
749749

750-
751750
public static function getSlugs(): array
752751
{
753752
self::generateSlugsArray();

src/Device/GarminTactix8Solar51.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class GarminTactix8Solar51 extends AbstractDevice
1717

1818
public function getEnum(): int
1919
{
20-
return DeviceProfile::GARMIN_TACTIX_8_SOLAR_47;
20+
return DeviceProfile::GARMIN_TACTIX_8_SOLAR_51;
2121
}
2222

2323
public function getName(): string

src/Distributor/Apple.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public function getDeviceEnumList(): array
118118
DeviceProfile::APPLE_IPHONE_16_PRO,
119119
DeviceProfile::APPLE_IPHONE_16_PRO_MAX,
120120
DeviceProfile::APPLE_IPHONE_16_PLUS,
121-
DeviceProfile::APPLE_IPHONE_16_E
121+
DeviceProfile::APPLE_IPHONE_16_E,
122122
];
123123
}
124124
}

src/Distributor/Garmin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public function getDeviceEnumList(): array
316316
DeviceProfile::GARMIN_TACTIX_8_SOLAR_51,
317317
DeviceProfile::GARMIN_FENIX_7_PRO_SOLAR_NO_WIFI,
318318
DeviceProfile::GARMIN_APPROACH_S_50,
319-
DeviceProfile::GARMIN_FENIX_7_X_PRO_SOLAR_NO_WIFI
319+
DeviceProfile::GARMIN_FENIX_7_X_PRO_SOLAR_NO_WIFI,
320320
];
321321
}
322322
}

src/Mapping/DevelopmentFitSdkMapping.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ protected function getMapping()
6868

6969
'Watch7,8' => DeviceProfile::APPLE_WATCH_10_V_42,
7070
'Watch7,9' => DeviceProfile::APPLE_WATCH_10_V_46,
71-
'Watch7,10' => DeviceProfile::APPLE_WATCH_10_V_42_CELLULAR,
72-
'Watch7,11' => DeviceProfile::APPLE_WATCH_10_V_46_CELLULAR,
71+
'Watch7,10' => DeviceProfile::APPLE_WATCH_10_V_42_CELLULAR,
72+
'Watch7,11' => DeviceProfile::APPLE_WATCH_10_V_46_CELLULAR,
7373
'iPhone7,1' => DeviceProfile::APPLE_IPHONE_6_PLUS,
7474
'iPhone7,2' => DeviceProfile::APPLE_IPHONE_6,
7575
'iPhone8,1' => DeviceProfile::APPLE_IPHONE_6_S,
@@ -116,7 +116,6 @@ protected function getMapping()
116116
'iPhone17,4' => DeviceProfile::APPLE_IPHONE_16_PLUS,
117117
'iPhone17,5' => DeviceProfile::APPLE_IPHONE_16_E,
118118

119-
120119
'Polar A370' => DeviceProfile::POLAR_A_370,
121120
'Polar M400' => DeviceProfile::POLAR_M_400,
122121
'Polar M430' => DeviceProfile::POLAR_M_430,

0 commit comments

Comments
 (0)