Skip to content

Commit 20704b9

Browse files
committed
make classes final
1 parent b15e3a1 commit 20704b9

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

src/Generator/ResetPasswordRandomGenerator.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@
1414
* @author Ryan Weaver <[email protected]>
1515
*
1616
* @internal
17-
*
18-
* @final
1917
*/
20-
class ResetPasswordRandomGenerator
18+
final class ResetPasswordRandomGenerator
2119
{
2220
/**
2321
* Original credit to Laravel's Str::random() method.

src/Generator/ResetPasswordTokenGenerator.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@
1717
* @author Ryan Weaver <[email protected]>
1818
*
1919
* @internal
20-
*
21-
* @final
2220
*/
23-
class ResetPasswordTokenGenerator
21+
final class ResetPasswordTokenGenerator
2422
{
2523
/**
2624
* @param string $signingKey Unique, random, cryptographically secure string

src/Model/ResetPasswordTokenComponents.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@
1414
* @author Ryan Weaver <[email protected]>
1515
*
1616
* @internal
17-
*
18-
* @final
1917
*/
20-
class ResetPasswordTokenComponents
18+
final class ResetPasswordTokenComponents
2119
{
2220
public function __construct(
2321
private string $selector,

0 commit comments

Comments
 (0)