Skip to content

Commit 96bcd87

Browse files
committed
update ci process
1 parent af43b1a commit 96bcd87

File tree

4 files changed

+3
-15
lines changed

4 files changed

+3
-15
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"require-dev": {
3636
"ext-json": "*",
37-
"phpstan/phpstan": "0.12.*",
37+
"phpstan/phpstan": "1.9.*",
3838
"squizlabs/php_codesniffer": "3.5.*",
3939
"symfony/phpunit-bridge": "^3.4 || ^4.1.12 || ^5.0 || ^6.0",
4040
"phpunit/phpunit": "^8.5 || ^9.0",

phpstan-baseline.neon

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@ parameters:
44
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::children\(\).#'
55
count: 1
66
path: ./src/DependencyInjection
7-
-
8-
message: '#Call to an undefined method object::getConnection\(\).#'
9-
count: 1
10-
path: ./src/Check/DoctrineCheck
117
-
128
message: '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder::root\(\).#'
139
count: 1

phpstan.neon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ includes:
22
- phpstan-baseline.neon
33

44
parameters:
5-
level: max
5+
level: 5
66
paths:
7-
- src/
7+
- src

src/DependencyInjection/SymfonyHealthCheckExtension.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@
1414

1515
class SymfonyHealthCheckExtension extends Extension
1616
{
17-
/**
18-
* @param array<array> $configs
19-
*
20-
* {@inheritdoc}
21-
*/
2217
public function load(array $configs, ContainerBuilder $container): void
2318
{
2419
$configuration = new Configuration();
@@ -30,9 +25,6 @@ public function load(array $configs, ContainerBuilder $container): void
3025
$this->loadHealthChecks($config, $loader, $container);
3126
}
3227

33-
/**
34-
* @param array<array> $config
35-
*/
3628
private function loadHealthChecks(
3729
array $config,
3830
XmlFileLoader $loader,

0 commit comments

Comments
 (0)