Skip to content

Commit 5268743

Browse files
committed
Code style fixes
1 parent db3256f commit 5268743

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

src/Matchers/BaseMatch.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
abstract class BaseMatch implements MatchInterface
1111
{
12-
1312
/**
1413
* @var
1514
*/

src/Matchers/Bruteforce.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
*/
1616
class Bruteforce extends BaseMatch
1717
{
18-
1918
public const BRUTEFORCE_CARDINALITY = 10;
2019

2120
public $pattern = 'bruteforce';

src/Matchers/DictionaryMatch.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
class DictionaryMatch extends BaseMatch
1111
{
12-
1312
public $pattern = 'dictionary';
1413

1514
/** @var string The name of the dictionary that the token was found in. */

src/Matchers/L33tMatch.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
*/
1414
class L33tMatch extends DictionaryMatch
1515
{
16-
1716
/** @var array An array of substitutions made to get from the token to the dictionary word. */
1817
public $sub = [];
1918

src/Matchers/YearMatch.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
class YearMatch extends BaseMatch
1111
{
12-
1312
public const NUM_YEARS = 119;
1413

1514
public $pattern = 'regex';

0 commit comments

Comments
 (0)