Skip to content

Commit

Permalink
make classes final
Browse files Browse the repository at this point in the history
  • Loading branch information
gregor-j committed Mar 18, 2022
1 parent cdf8f3e commit 48e40f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Generators/RandomLowerCaseWord.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Class RandomLowerCaseWord
*/
class RandomLowerCaseWord implements RandomGeneratorInterface
final class RandomLowerCaseWord implements RandomGeneratorInterface
{
use ManageRandomItemsTrait;
use DictionaryWordTrait;
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/RandomUpperCaseWord.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/**
* Class RandomUpperCaseWord
*/
class RandomUpperCaseWord implements RandomGeneratorInterface
final class RandomUpperCaseWord implements RandomGeneratorInterface
{
use ManageRandomItemsTrait;
use DictionaryWordTrait;
Expand Down

0 comments on commit 48e40f2

Please sign in to comment.