We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c8b5a5 commit 2035cfcCopy full SHA for 2035cfc
tests/unit/LucaDegasperi/OAuth2Server/AuthorizerSpec.php
@@ -24,9 +24,9 @@ function it_is_initializable()
24
25
function it_issues_an_access_token(AuthorizationServer $issuer)
26
{
27
- $issuer->issueAccessToken([])->willReturn('foo')->shouldBeCalled();
+ $issuer->issueAccessToken()->willReturn('foo')->shouldBeCalled();
28
29
- $this->issueAccessToken([])->shouldReturn('foo');
+ $this->issueAccessToken()->shouldReturn('foo');
30
}
31
32
function it_checks_the_auth_code_request_parameters(AuthorizationServer $issuer, AuthCodeGrant $authCodeGrant)
0 commit comments