diff options
Diffstat (limited to 'tests/Utils/TokensTest.php')
-rw-r--r-- | tests/Utils/TokensTest.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/Utils/TokensTest.php b/tests/Utils/TokensTest.php index 5650296..6ebbbab 100644 --- a/tests/Utils/TokensTest.php +++ b/tests/Utils/TokensTest.php @@ -10,6 +10,11 @@ class TokensTest extends TestCase { /** * @dataProvider replaceTokensProvider + * + * @param mixed $list + * @param mixed $find + * @param mixed $replace + * @param mixed $expected */ public function testReplaceTokens($list, $find, $replace, $expected) { @@ -36,6 +41,10 @@ class TokensTest extends TestCase /** * @dataProvider matchProvider + * + * @param mixed $token + * @param mixed $pattern + * @param mixed $expected */ public function testMatch($token, $pattern, $expected) { |