Browse Source

Remove typehints.

Mark Story 6 years ago
parent
commit
8666812833
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/TestCase/Auth/FormAuthenticateTest.php

+ 1 - 1
tests/TestCase/Auth/FormAuthenticateTest.php

@@ -491,7 +491,7 @@ class FormAuthenticateTest extends TestCase
      * @return void
      * @dataProvider userList
      */
-    public function testAuthenticateSingleHash(string $username, ?string $password): void
+    public function testAuthenticateSingleHash($username, $password)
     {
         $this->auth = new FormAuthenticate($this->Collection, [
             'userModel' => 'Users',