diff options
author | Damian Dlugosz <bigfootdd@gmail.com> | 2017-02-12 15:22:42 +0100 |
---|---|---|
committer | Damian Dlugosz <bigfootdd@gmail.com> | 2017-02-12 15:22:42 +0100 |
commit | 08d5915850d4ab975c6ec2289ddb35c1c2cabea5 (patch) | |
tree | dccf8c95bc2bc03fd31d2d024b7a180ca0d58b17 /tests/Parser | |
parent | 677de552c8577b9eebc3f8393a25f07e4bed2f31 (diff) | |
download | sql-parser-08d5915850d4ab975c6ec2289ddb35c1c2cabea5.zip sql-parser-08d5915850d4ab975c6ec2289ddb35c1c2cabea5.tar.gz sql-parser-08d5915850d4ab975c6ec2289ddb35c1c2cabea5.tar.bz2 |
Apply cs fixes
Diffstat (limited to 'tests/Parser')
-rw-r--r-- | tests/Parser/AlterStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/CallStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/CreateStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/DeleteStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/ExplainStatement.php | 1 | ||||
-rw-r--r-- | tests/Parser/InsertStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/ParserTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/RenameStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/ReplaceStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/RestoreStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/SelectStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/SetStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/TransactionStatementTest.php | 1 | ||||
-rw-r--r-- | tests/Parser/UpdateStatementTest.php | 1 |
14 files changed, 14 insertions, 0 deletions
diff --git a/tests/Parser/AlterStatementTest.php b/tests/Parser/AlterStatementTest.php index d2a23b6..1aebf7c 100644 --- a/tests/Parser/AlterStatementTest.php +++ b/tests/Parser/AlterStatementTest.php @@ -8,6 +8,7 @@ class AlterStatementTest extends TestCase { /** * @dataProvider testAlterProvider + * @param mixed $test */ public function testAlter($test) { diff --git a/tests/Parser/CallStatementTest.php b/tests/Parser/CallStatementTest.php index e8efa71..9884d72 100644 --- a/tests/Parser/CallStatementTest.php +++ b/tests/Parser/CallStatementTest.php @@ -8,6 +8,7 @@ class CallStatementTest extends TestCase { /** * @dataProvider testCallProvider + * @param mixed $test */ public function testCall($test) { diff --git a/tests/Parser/CreateStatementTest.php b/tests/Parser/CreateStatementTest.php index 9a9350d..e524d36 100644 --- a/tests/Parser/CreateStatementTest.php +++ b/tests/Parser/CreateStatementTest.php @@ -8,6 +8,7 @@ class CreateStatementTest extends TestCase { /** * @dataProvider testCreateProvider + * @param mixed $test */ public function testCreate($test) { diff --git a/tests/Parser/DeleteStatementTest.php b/tests/Parser/DeleteStatementTest.php index e036907..181c7dd 100644 --- a/tests/Parser/DeleteStatementTest.php +++ b/tests/Parser/DeleteStatementTest.php @@ -8,6 +8,7 @@ class DeleteStatementTest extends TestCase { /** * @dataProvider testDeleteProvider + * @param mixed $test */ public function testDelete($test) { diff --git a/tests/Parser/ExplainStatement.php b/tests/Parser/ExplainStatement.php index 3f25a39..3e242af 100644 --- a/tests/Parser/ExplainStatement.php +++ b/tests/Parser/ExplainStatement.php @@ -8,6 +8,7 @@ class ExplainStatementTest extends TestCase { /** * @dataProvider testExplainProvider + * @param mixed $test */ public function testExplain($test) { diff --git a/tests/Parser/InsertStatementTest.php b/tests/Parser/InsertStatementTest.php index 2e869a8..4e5e646 100644 --- a/tests/Parser/InsertStatementTest.php +++ b/tests/Parser/InsertStatementTest.php @@ -8,6 +8,7 @@ class InsertStatementTest extends TestCase { /** * @dataProvider testInsertProvider + * @param mixed $test */ public function testInsert($test) { diff --git a/tests/Parser/ParserTest.php b/tests/Parser/ParserTest.php index cf83f3e..f2de43a 100644 --- a/tests/Parser/ParserTest.php +++ b/tests/Parser/ParserTest.php @@ -12,6 +12,7 @@ class ParserTest extends TestCase { /** * @dataProvider testParseProvider + * @param mixed $test */ public function testParse($test) { diff --git a/tests/Parser/RenameStatementTest.php b/tests/Parser/RenameStatementTest.php index ea9aab7..66b99a1 100644 --- a/tests/Parser/RenameStatementTest.php +++ b/tests/Parser/RenameStatementTest.php @@ -8,6 +8,7 @@ class RenameStatementTest extends TestCase { /** * @dataProvider testRenameProvider + * @param mixed $test */ public function testRename($test) { diff --git a/tests/Parser/ReplaceStatementTest.php b/tests/Parser/ReplaceStatementTest.php index 64f145f..b8f7f1d 100644 --- a/tests/Parser/ReplaceStatementTest.php +++ b/tests/Parser/ReplaceStatementTest.php @@ -8,6 +8,7 @@ class ReplaceStatementTest extends TestCase { /** * @dataProvider testReplaceProvider + * @param mixed $test */ public function testReplace($test) { diff --git a/tests/Parser/RestoreStatementTest.php b/tests/Parser/RestoreStatementTest.php index 64fe03b..fc71fce 100644 --- a/tests/Parser/RestoreStatementTest.php +++ b/tests/Parser/RestoreStatementTest.php @@ -8,6 +8,7 @@ class RestoreStatementTest extends TestCase { /** * @dataProvider testRestoreProvider + * @param mixed $test */ public function testRestore($test) { diff --git a/tests/Parser/SelectStatementTest.php b/tests/Parser/SelectStatementTest.php index 8f6e4b0..f222f06 100644 --- a/tests/Parser/SelectStatementTest.php +++ b/tests/Parser/SelectStatementTest.php @@ -17,6 +17,7 @@ class SelectStatementTest extends TestCase /** * @dataProvider testSelectProvider + * @param mixed $test */ public function testSelect($test) { diff --git a/tests/Parser/SetStatementTest.php b/tests/Parser/SetStatementTest.php index 6385a27..6b43c5d 100644 --- a/tests/Parser/SetStatementTest.php +++ b/tests/Parser/SetStatementTest.php @@ -8,6 +8,7 @@ class SetStatementTest extends TestCase { /** * @dataProvider testSetProvider + * @param mixed $test */ public function testSet($test) { diff --git a/tests/Parser/TransactionStatementTest.php b/tests/Parser/TransactionStatementTest.php index 71d5d9e..618a305 100644 --- a/tests/Parser/TransactionStatementTest.php +++ b/tests/Parser/TransactionStatementTest.php @@ -8,6 +8,7 @@ class TransactionStatementTest extends TestCase { /** * @dataProvider testTransactionProvider + * @param mixed $test */ public function testTransaction($test) { diff --git a/tests/Parser/UpdateStatementTest.php b/tests/Parser/UpdateStatementTest.php index 1db2233..3e3d483 100644 --- a/tests/Parser/UpdateStatementTest.php +++ b/tests/Parser/UpdateStatementTest.php @@ -8,6 +8,7 @@ class UpdateStatementTest extends TestCase { /** * @dataProvider testUpdateProvider + * @param mixed $test */ public function testUpdate($test) { |