We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b447897 commit 5ff0587Copy full SHA for 5ff0587
phpstan.neon
@@ -5,4 +5,7 @@ parameters:
5
level: 5
6
paths:
7
- src
8
- - tests
+ - tests
9
+ reportUnmatchedIgnoredErrors: false
10
+ ignoreErrors: #see https://github.com/phpstan/phpstan/issues/1267#issuecomment-552874947 -> @todo remove when sf 3.4 support ends
11
+ - "#^Call to an undefined static method #"
src/Process/ProcessorCounter.php
@@ -55,6 +55,7 @@ private function readFromProcCPUInfo()
55
$process = Process::fromShellCommandline($executeCommand);
56
} else {
57
// Drop when sf 3.4 supports ends
58
+ /** @phpstan-ignore-next-line */ // @todo remove when sf 3.4 support ends
59
$process = new Process($executeCommand);
60
}
61
$process->run();
0 commit comments