Skip to content

Commit

Permalink
make classes final
Browse files Browse the repository at this point in the history
  • Loading branch information
jrushlow committed Apr 26, 2024
1 parent b15e3a1 commit 20704b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/Generator/ResetPasswordRandomGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @internal
*
* @final
*/
class ResetPasswordRandomGenerator
final class ResetPasswordRandomGenerator
{
/**
* Original credit to Laravel's Str::random() method.
Expand Down
4 changes: 1 addition & 3 deletions src/Generator/ResetPasswordTokenGenerator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @internal
*
* @final
*/
class ResetPasswordTokenGenerator
final class ResetPasswordTokenGenerator
{
/**
* @param string $signingKey Unique, random, cryptographically secure string
Expand Down
4 changes: 1 addition & 3 deletions src/Model/ResetPasswordTokenComponents.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@
* @author Ryan Weaver <ryan@symfonycasts.com>
*
* @internal
*
* @final
*/
class ResetPasswordTokenComponents
final class ResetPasswordTokenComponents
{
public function __construct(
private string $selector,
Expand Down

0 comments on commit 20704b9

Please sign in to comment.