Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Pohl committed Jan 19, 2022
1 parent 5ab4e8d commit d68cc81
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Device/HuamiAmazfitGTS3.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace Runalyze\Devices\Device;

class HuamiAmazfitGTS extends AbstractDevice
class HuamiAmazfitGTS3 extends AbstractDevice
{
use HuamiDeviceTrait;

Expand Down
30 changes: 30 additions & 0 deletions src/Distributor/Hammerhead.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

/*
* This file is part of the Runalyze Device List.
*
* (c) RUNALYZE <mail@runalyze.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/

namespace Runalyze\Devices\Distributor;

class Hammerhead extends AbstractDistributor
{
public function getEnum()
{
return DistributorProfile::HAMMERHEAD;
}

public function getName()
{
return 'Hammerhead';
}

public function getDeviceEnumList()
{
return [];
}
}

0 comments on commit d68cc81

Please sign in to comment.