PHP !== Java

This commit is contained in:
Kleis Auke Wolthuizen
2017-11-21 17:57:31 +01:00
parent dfa299c895
commit ff42f334a5
4 changed files with 20 additions and 20 deletions

View File

@@ -12,7 +12,7 @@ class APIKey implements Auth
private $email;
private $apiKey;
public function __construct(String $email, String $apiKey)
public function __construct(string $email, string $apiKey)
{
$this->email = $email;
$this->apiKey = $apiKey;

View File

@@ -11,7 +11,7 @@ class UserServiceKey implements Auth
{
private $userServiceKey;
public function __construct(String $userServiceKey)
public function __construct(string $userServiceKey)
{
$this->userServiceKey = $userServiceKey;
}