Skip to content

Commit

Permalink
Code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkopinsky committed Dec 13, 2021
1 parent db3256f commit 5268743
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/Matchers/BaseMatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

abstract class BaseMatch implements MatchInterface
{

/**
* @var
*/
Expand Down
1 change: 0 additions & 1 deletion src/Matchers/Bruteforce.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
class Bruteforce extends BaseMatch
{

public const BRUTEFORCE_CARDINALITY = 10;

public $pattern = 'bruteforce';
Expand Down
1 change: 0 additions & 1 deletion src/Matchers/DictionaryMatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

class DictionaryMatch extends BaseMatch
{

public $pattern = 'dictionary';

/** @var string The name of the dictionary that the token was found in. */
Expand Down
1 change: 0 additions & 1 deletion src/Matchers/L33tMatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
*/
class L33tMatch extends DictionaryMatch
{

/** @var array An array of substitutions made to get from the token to the dictionary word. */
public $sub = [];

Expand Down
1 change: 0 additions & 1 deletion src/Matchers/YearMatch.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

class YearMatch extends BaseMatch
{

public const NUM_YEARS = 119;

public $pattern = 'regex';
Expand Down

0 comments on commit 5268743

Please sign in to comment.