Browse Source

Fix param doc comments

Mauri Kujala 6 years ago
parent
commit
3cd4a07ca9
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/TestSuite/IntegrationTestTrait.php

+ 3 - 3
src/TestSuite/IntegrationTestTrait.php

@@ -197,7 +197,7 @@ trait IntegrationTestTrait
     /**
      * List of fields that are excluded from field validation.
      *
-     * @var array
+     * @var string[]
      */
     protected $_unlockedFields = [];
 
@@ -270,7 +270,7 @@ trait IntegrationTestTrait
      * compatible token to be added to request data. This
      * lets you easily test actions protected by SecurityComponent.
      *
-     * @param array $unlockedFields List of fields that are excluded from field validation.
+     * @param string[] $unlockedFields List of fields that are excluded from field validation.
      * @return void
      */
     public function enableSecurityToken($unlockedFields = [])
@@ -283,7 +283,7 @@ trait IntegrationTestTrait
     /**
      * Set list of fields that are excluded from field validation.
      *
-     * @param array $unlockedFields List of fields that are excluded from field validation.
+     * @param string[] $unlockedFields List of fields that are excluded from field validation.
      * @return void
      */
     public function setUnlockedFields($unlockedFields = [])