-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace some
@inject
annotations with constructor or method injection
- Loading branch information
Showing
11 changed files
with
193 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Cundd\Rest\Tests\Fixtures; | ||
|
||
use Cundd\Rest\Authentication\UserProviderInterface; | ||
|
||
class UserProvider implements UserProviderInterface | ||
{ | ||
public function checkCredentials(string $username, string $password): bool | ||
{ | ||
return $username === $this->getApiUser() && $password === $this->getApiKey(); | ||
} | ||
|
||
/** | ||
* Correct user for the API | ||
* | ||
* @return string | ||
*/ | ||
public static function getApiUser() | ||
{ | ||
return 'daniel'; | ||
} | ||
|
||
/** | ||
* Correct API key | ||
* | ||
* @return string | ||
*/ | ||
public static function getApiKey() | ||
{ | ||
return 'api-key'; | ||
} | ||
} |
Oops, something went wrong.