Skip to content

Commit 3171f98

Browse files
committed
Refactor and add some docblocks
1 parent 475478d commit 3171f98

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

src/Auth/AuthInterface.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@
22

33
namespace PoGoPHP\Auth;
44

5-
use GuzzleHttp\ClientInterface;
6-
75
interface AuthInterface
86
{
9-
public function setHttpClient(ClientInterface $httpClient);
10-
117
/**
128
* @return AccessToken
139
*/

src/Location/Location.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,22 @@
44

55
class Location
66
{
7+
/**
8+
* @var string
9+
*/
710
public $lat;
11+
12+
/**
13+
* @var string
14+
*/
815
public $lng;
916

17+
/**
18+
* Location constructor.
19+
*
20+
* @param string $lat
21+
* @param string $lng
22+
*/
1023
public function __construct($lat, $lng)
1124
{
1225
$this->lat = $lat;

0 commit comments

Comments
 (0)