Skip to content

Commit 08d5915

Browse files
committed
Apply cs fixes
1 parent 677de55 commit 08d5915

29 files changed

Lines changed: 57 additions & 2 deletions

.php_cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ return PhpCsFixer\Config::create()
1414
'array_syntax' => array('syntax' => 'long'),
1515
'concat_space' => array('spacing' => true),
1616
'no_trailing_whitespace' => true,
17+
'phpdoc_add_missing_param_annotation' => true,
1718
'phpdoc_order' => true,
1819
))
1920
->setFinder($finder)

tests/Components/ArrayObjTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public function testParseType()
3838

3939
/**
4040
* @dataProvider testParseProvider
41+
* @param mixed $test
4142
*/
4243
public function testParse($test)
4344
{

tests/Components/ExpressionTest.php

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

2222
/**
2323
* @dataProvider testParseErrProvider
24+
* @param mixed $expr
25+
* @param mixed $error
2426
*/
2527
public function testParseErr($expr, $error)
2628
{

tests/Components/LimitTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public function testBuildWithOffset()
2222

2323
/**
2424
* @dataProvider testParseProvider
25+
* @param mixed $test
2526
*/
2627
public function testParse($test)
2728
{

tests/Lexer/LexerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public function testErrorStrict()
4848

4949
/**
5050
* @dataProvider testLexProvider
51+
* @param mixed $test
5152
*/
5253
public function testLex($test)
5354
{

tests/Misc/BugsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class BugsTest extends TestCase
88
{
99
/**
1010
* @dataProvider testBugProvider
11+
* @param mixed $test
1112
*/
1213
public function testBug($test)
1314
{

tests/Parser/AlterStatementTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class AlterStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testAlterProvider
11+
* @param mixed $test
1112
*/
1213
public function testAlter($test)
1314
{

tests/Parser/CallStatementTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class CallStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testCallProvider
11+
* @param mixed $test
1112
*/
1213
public function testCall($test)
1314
{

tests/Parser/CreateStatementTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class CreateStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testCreateProvider
11+
* @param mixed $test
1112
*/
1213
public function testCreate($test)
1314
{

tests/Parser/DeleteStatementTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ class DeleteStatementTest extends TestCase
88
{
99
/**
1010
* @dataProvider testDeleteProvider
11+
* @param mixed $test
1112
*/
1213
public function testDelete($test)
1314
{

0 commit comments

Comments
 (0)