@@ -13,7 +13,7 @@ class ZxcvbnTest extends TestCase
1313 /** @var Zxcvbn */
1414 private $ zxcvbn ;
1515
16- public function setUp ()
16+ public function setUp (): void
1717 {
1818 $ this ->zxcvbn = new Zxcvbn ();
1919 }
@@ -39,7 +39,7 @@ public function typeDataProvider()
3939 ['crack_times_seconds ' , 'array ' ],
4040 ['crack_times_display ' , 'array ' ],
4141 ['feedback ' , 'array ' ],
42- ['calc_time ' , 'numeric ' ]
42+ ['calc_time ' , 'numeric ' ],
4343 ];
4444 }
4545
@@ -87,11 +87,11 @@ public function sanityCheckDataProvider()
8787 * Some basic sanity checks. All of the underlying functionality is tested in more details in their specific
8888 * classes, but this is just to check that it's all tied together correctly at the end.
8989 * @dataProvider sanityCheckDataProvider
90- * @param string $password
91- * @param int $score
90+ * @param string $password
91+ * @param int $score
9292 * @param string[] $patterns
93- * @param string $slowHashingDisplay
94- * @param float $guesses
93+ * @param string $slowHashingDisplay
94+ * @param float $guesses
9595 */
9696 public function testZxcvbnSanityCheck ($ password , $ score , $ patterns , $ slowHashingDisplay , $ guesses )
9797 {
0 commit comments