Skip to content

Commit 14b0a89

Browse files
committed
Merge remote-tracking branch 'origin/pull/137'
2 parents 6a9ea10 + 08d5915 commit 14b0a89

29 files changed

+91
-2
lines changed

.php_cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ return PhpCsFixer\Config::create()
1717
'no_trailing_whitespace' => true,
1818
'no_useless_return' => true,
1919
'no_useless_else' => true,
20+
'phpdoc_add_missing_param_annotation' => true,
2021
'phpdoc_order' => true,
2122
))
2223
->setFinder($finder)

tests/Components/ArrayObjTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ public function testParseType()
3838

3939
/**
4040
* @dataProvider testParseProvider
41+
*
42+
* @param mixed $test
4143
*/
4244
public function testParse($test)
4345
{

tests/Components/ExpressionTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ public function testParse2()
2121

2222
/**
2323
* @dataProvider testParseErrProvider
24+
*
25+
* @param mixed $expr
26+
* @param mixed $error
2427
*/
2528
public function testParseErr($expr, $error)
2629
{

tests/Components/LimitTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ public function testBuildWithOffset()
2222

2323
/**
2424
* @dataProvider testParseProvider
25+
*
26+
* @param mixed $test
2527
*/
2628
public function testParse($test)
2729
{

tests/Lexer/LexerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ public function testErrorStrict()
4848

4949
/**
5050
* @dataProvider testLexProvider
51+
*
52+
* @param mixed $test
5153
*/
5254
public function testLex($test)
5355
{

tests/Misc/BugsTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class BugsTest extends TestCase
88
{
99
/**
1010
* @dataProvider testBugProvider
11+
*
12+
* @param mixed $test
1113
*/
1214
public function testBug($test)
1315
{

tests/Parser/AlterStatementTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class AlterStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testAlterProvider
11+
*
12+
* @param mixed $test
1113
*/
1214
public function testAlter($test)
1315
{

tests/Parser/CallStatementTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class CallStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testCallProvider
11+
*
12+
* @param mixed $test
1113
*/
1214
public function testCall($test)
1315
{

tests/Parser/CreateStatementTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class CreateStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testCreateProvider
11+
*
12+
* @param mixed $test
1113
*/
1214
public function testCreate($test)
1315
{

tests/Parser/DeleteStatementTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class DeleteStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testDeleteProvider
11+
*
12+
* @param mixed $test
1113
*/
1214
public function testDelete($test)
1315
{

0 commit comments

Comments
 (0)