Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c4368a3

Browse files
committedSep 30, 2024·
formatting
1 parent 7458bfd commit c4368a3

9 files changed

+33
-23
lines changed
 

‎database/factories/ClientFactory.php

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ public function asDeviceCodeClient(): static
8888
{
8989
return $this->state([
9090
'grant_types' => ['urn:ietf:params:oauth:grant-type:device_code', 'refresh_token'],
91+
'redirect_uris' => [],
9192
]);
9293
}
9394
}

‎src/DeviceCode.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ class DeviceCode extends Model
2424
/**
2525
* The guarded attributes on the model.
2626
*
27-
* @var array
27+
* @var array<string>|bool
2828
*/
29-
protected $guarded = [];
29+
protected $guarded = false;
3030

3131
/**
3232
* The attributes that should be cast to native types.
3333
*
34-
* @var array
34+
* @var array<string, \Illuminate\Contracts\Database\Eloquent\Castable|string>
3535
*/
3636
protected $casts = [
3737
'scopes' => 'array',
@@ -57,6 +57,8 @@ class DeviceCode extends Model
5757

5858
/**
5959
* Get the client that owns the authentication code.
60+
*
61+
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\Laravel\Passport\Client, $this>
6062
*/
6163
public function client(): BelongsTo
6264
{

‎src/Http/Controllers/ApproveDeviceAuthorizationController.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ class ApproveDeviceAuthorizationController
1313
/**
1414
* Create a new controller instance.
1515
*/
16-
public function __construct(protected AuthorizationServer $server,
17-
protected ApprovedDeviceAuthorizationResponse $response)
18-
{
16+
public function __construct(
17+
protected AuthorizationServer $server,
18+
protected ApprovedDeviceAuthorizationResponse $response
19+
) {
1920
}
2021

2122
/**

‎src/Http/Controllers/DenyDeviceAuthorizationController.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ class DenyDeviceAuthorizationController
1313
/**
1414
* Create a new controller instance.
1515
*/
16-
public function __construct(protected AuthorizationServer $server,
17-
protected DeniedDeviceAuthorizationResponse $response)
18-
{
16+
public function __construct(
17+
protected AuthorizationServer $server,
18+
protected DeniedDeviceAuthorizationResponse $response
19+
) {
1920
}
2021

2122
/**

‎src/Http/Controllers/DeviceAuthorizationController.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ class DeviceAuthorizationController
1313
/**
1414
* Create a new controller instance.
1515
*/
16-
public function __construct(protected DeviceAuthorizationViewResponse $viewResponse)
17-
{
16+
public function __construct(
17+
protected DeviceAuthorizationViewResponse $viewResponse
18+
) {
1819
}
1920

2021
/**

‎src/Http/Controllers/DeviceCodeController.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ class DeviceCodeController
1414
/**
1515
* Create a new controller instance.
1616
*/
17-
public function __construct(protected AuthorizationServer $server)
18-
{
17+
public function __construct(
18+
protected AuthorizationServer $server
19+
) {
1920
}
2021

2122
/**

‎src/Http/Controllers/DeviceUserCodeController.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ class DeviceUserCodeController
1111
/**
1212
* Create a new controller instance.
1313
*/
14-
public function __construct(protected DeviceUserCodeViewResponse $viewResponse)
15-
{
14+
public function __construct(
15+
protected DeviceUserCodeViewResponse $viewResponse
16+
) {
1617
}
1718

1819
/**

‎src/Passport.php

+4
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,8 @@ public static function authorizationView(Closure|string $view): void
598598

599599
/**
600600
* Specify which view should be used as the device authorization view.
601+
*
602+
* @param (\Closure(array<string, mixed>): (\Symfony\Component\HttpFoundation\Response))|string $view
601603
*/
602604
public static function deviceAuthorizationView(Closure|string $view): void
603605
{
@@ -606,6 +608,8 @@ public static function deviceAuthorizationView(Closure|string $view): void
606608

607609
/**
608610
* Specify which view should be used as the device user code view.
611+
*
612+
* @param (\Closure(array<string, mixed>): (\Symfony\Component\HttpFoundation\Response))|string $view
609613
*/
610614
public static function deviceUserCodeView(Closure|string $view): void
611615
{

‎src/PassportServiceProvider.php

+6-8
Original file line numberDiff line numberDiff line change
@@ -232,19 +232,17 @@ protected function makeImplicitGrant(): ImplicitGrant
232232
*/
233233
protected function makeDeviceCodeGrant(): DeviceCodeGrant
234234
{
235-
$grant = new DeviceCodeGrant(
235+
return tap(new DeviceCodeGrant(
236236
$this->app->make(DeviceCodeRepository::class),
237237
$this->app->make(RefreshTokenRepository::class),
238238
new DateInterval('PT10M'),
239239
route('passport.device'),
240240
5
241-
);
242-
243-
$grant->setRefreshTokenTTL(Passport::refreshTokensExpireIn());
244-
$grant->setIncludeVerificationUriComplete(true);
245-
$grant->setIntervalVisibility(true);
246-
247-
return $grant;
241+
), function (DeviceCodeGrant $grant) {
242+
$grant->setRefreshTokenTTL(Passport::refreshTokensExpireIn());
243+
$grant->setIncludeVerificationUriComplete(true);
244+
$grant->setIntervalVisibility(true);
245+
});
248246
}
249247

250248
/**

0 commit comments

Comments
 (0)