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 8267087 commit b0e7e1dCopy full SHA for b0e7e1d
.github/workflows/phpstan.yml
@@ -3,8 +3,9 @@ name: PHPStan
3
on:
4
workflow_dispatch:
5
push:
6
- branches-ignore:
7
- - 'dependabot/npm_and_yarn/*'
+ branches: [main]
+ pull_request:
8
9
10
jobs:
11
phpstan:
src/Fakes/PowerMonitorFake.php
@@ -64,7 +64,7 @@ public function assertGetSystemIdleState(int|Closure $key): void
64
$hit = empty(
65
array_filter(
66
$this->getSystemIdleStateCalls,
67
- fn (string $keyIteration) => $key($keyIteration) === true
+ fn (int $keyIteration) => $key($keyIteration) === true
68
)
69
) === false;
70
0 commit comments