Skip to content

Commit 7db60af

Browse files
committed
Leftover
1 parent ca4181c commit 7db60af

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

DependencyInjection/GraphqliteCompilerPass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ private function getClassList(string $namespace, int $globTtl = 2, bool $recursi
501501
// The autoloader might trigger errors if the file does not respect PSR-4 or if the
502502
// Symfony DebugAutoLoader is installed. (see https://github.com/thecodingmachine/graphqlite/issues/216)
503503
require_once $phpFile;
504-
// @phpstan-ignore-next-line Does it exists now?
504+
// @phpstan-ignore-next-line Does it exist now?
505505
if (! class_exists($className, false)) {
506506
continue;
507507
}

phpstan.neon

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ parameters:
1111
- cache
1212
- .phpstan-cache
1313
- Tests
14-
bootstrapFiles:
15-
- vendor/bin/.phpunit/phpunit/vendor/autoload.php
1614
level: max
1715
polluteScopeWithLoopInitialAssignments: false
1816
polluteScopeWithAlwaysIterableForeach: false
@@ -27,5 +25,5 @@ parameters:
2725
treatPhpDocTypesAsCertain: false
2826
reportUnmatchedIgnoredErrors: false
2927
ignoreErrors:
30-
# Symfony's TreeBuilder has problem - some method(s) in the chain have a wrong return typehint:
28+
# Wrong return type hint in Symfony's TreeBuilder
3129
- '#Call to an undefined method Symfony\\Component\\Config\\Definition\\Builder\\NodeDefinition::\w+\(\).#'

0 commit comments

Comments
 (0)