diff options
author | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-14 12:43:05 -0300 |
---|---|---|
committer | Maurício Meneghini Fauth <mauricio@fauth.dev> | 2019-12-14 12:43:05 -0300 |
commit | 53b6ab87749357700f7129d0400fee3afc9ec50d (patch) | |
tree | 6325a11c1513e6099d1bc07eabf0c2f1e9d49aa1 /tests/Utils/TokensTest.php | |
parent | 53441d712bc5e8d0f5f08144fd0ec4dfd5f8b04c (diff) | |
download | sql-parser-53b6ab87749357700f7129d0400fee3afc9ec50d.zip sql-parser-53b6ab87749357700f7129d0400fee3afc9ec50d.tar.gz sql-parser-53b6ab87749357700f7129d0400fee3afc9ec50d.tar.bz2 |
Remove useless comments and annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'tests/Utils/TokensTest.php')
-rw-r--r-- | tests/Utils/TokensTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Utils/TokensTest.php b/tests/Utils/TokensTest.php index 200dfe6..b71a873 100644 --- a/tests/Utils/TokensTest.php +++ b/tests/Utils/TokensTest.php @@ -10,12 +10,12 @@ use PhpMyAdmin\SqlParser\Utils\Tokens; class TokensTest extends TestCase { /** - * @dataProvider replaceTokensProvider - * * @param mixed $list * @param mixed $find * @param mixed $replace * @param mixed $expected + * + * @dataProvider replaceTokensProvider */ public function testReplaceTokens($list, $find, $replace, $expected) { @@ -41,11 +41,11 @@ class TokensTest extends TestCase } /** - * @dataProvider matchProvider - * * @param mixed $token * @param mixed $pattern * @param mixed $expected + * + * @dataProvider matchProvider */ public function testMatch($token, $pattern, $expected) { |