Skip to content

Commit 51f970d

Browse files
committed
[+]: update vendor stuff
-> ignore failing test, upstream package is already fixed
1 parent 6c9ecc4 commit 51f970d

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"ext-simplexml": "*",
2121
"amphp/parallel": "~1.4",
2222
"composer/composer": "1.10.6",
23-
"jetbrains/phpstorm-stubs": "2019.3",
2423
"phpdocumentor/type-resolver": "~1.0 || ~1.1",
2524
"phpdocumentor/reflection-docblock": "~4.3 || ~5.1",
2625
"phpdocumentor/reflection-common": "~2.1",
@@ -33,6 +32,7 @@
3332
"require-dev": {
3433
"phpunit/phpunit": "~6.0 || ~7.0"
3534
},
35+
"minimum-stability": "dev",
3636
"autoload": {
3737
"psr-4": {
3838
"voku\\": "src/voku/"

tests/CheckerTest.php

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,19 @@ public function testCheckPhpClasses(): void
2020
static::assertSame(
2121
[
2222
'Simple-PHP-Code-Parser/tests/Dummy3.php' => [
23-
0 => '[9]: missing return type for voku\tests\foo3()',
24-
1 => '[19]: missing property type for voku\tests\Dummy3->$foo',
25-
2 => '[19]: missing property type for voku\tests\Dummy3->$foo_mixed',
26-
3 => '[154]: missing parameter type "null" in phpdoc from voku\tests\Dummy3->lall8() | parameter:case',
27-
4 => '[44]: missing parameter type for voku\tests\Dummy3->lall() | parameter:foo',
28-
5 => '[44]: missing return type for voku\tests\Dummy3->lall()',
29-
6 => '[74]: wrong return type "string" in phpdoc from voku\tests\Dummy3->lall3()',
30-
7 => '[64]: wrong return type "null" in phpdoc from voku\tests\Dummy3->lall2_1()',
31-
8 => '[54]: missing return type "null" in phpdoc from voku\tests\Dummy3->lall2()',
32-
9 => '[84]: wrong parameter type "string" in phpdoc from voku\tests\Dummy3->lall3_1() | parameter:foo',
23+
0 => '[9]: missing return type for voku\tests\foo3()',
24+
1 => '[19]: missing property type for voku\tests\Dummy3->$foo',
25+
2 => '[19]: missing property type for voku\tests\Dummy3->$foo_mixed',
26+
3 => '[174]: missing parameter type "null" in phpdoc from voku\tests\Dummy3->lall10() | parameter:case',
27+
4 => '[184]: missing parameter type "null" in phpdoc from voku\tests\Dummy3->lall11() | parameter:case',
28+
5 => '[124]: missing parameter type "null" in phpdoc from voku\tests\Dummy3->lall5() | parameter:case',
29+
6 => '[154]: missing parameter type "null" in phpdoc from voku\tests\Dummy3->lall8() | parameter:case',
30+
7 => '[44]: missing parameter type for voku\tests\Dummy3->lall() | parameter:foo',
31+
8 => '[44]: missing return type for voku\tests\Dummy3->lall()',
32+
9 => '[74]: wrong return type "string" in phpdoc from voku\tests\Dummy3->lall3()',
33+
10 => '[64]: wrong return type "null" in phpdoc from voku\tests\Dummy3->lall2_1()',
34+
11 => '[54]: missing return type "null" in phpdoc from voku\tests\Dummy3->lall2()',
35+
12 => '[84]: wrong parameter type "string" in phpdoc from voku\tests\Dummy3->lall3_1() | parameter:foo',
3336
],
3437
],
3538
$phpCodeErrors

0 commit comments

Comments
 (0)