We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475478d commit 3171f98Copy full SHA for 3171f98
src/Auth/AuthInterface.php
@@ -2,12 +2,8 @@
2
3
namespace PoGoPHP\Auth;
4
5
-use GuzzleHttp\ClientInterface;
6
-
7
interface AuthInterface
8
{
9
- public function setHttpClient(ClientInterface $httpClient);
10
11
/**
12
* @return AccessToken
13
*/
src/Location/Location.php
@@ -4,9 +4,22 @@
class Location
+ /**
+ * @var string
+ */
public $lat;
+
14
15
public $lng;
16
17
18
+ * Location constructor.
19
+ *
20
+ * @param string $lat
21
+ * @param string $lng
22
23
public function __construct($lat, $lng)
24
25
$this->lat = $lat;
0 commit comments