Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 473c536

Browse files
Fixes
1 parent 021e25e commit 473c536

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

‎Makefile‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ lint:
4444
--exclude tests/PHPStan/Rules/Properties/data/read-only-property.php \
4545
--exclude tests/PHPStan/Rules/Properties/data/overriding-property.php \
4646
--exclude tests/PHPStan/Rules/Constants/data/overriding-final-constant.php \
47+
--exclude tests/PHPStan/Rules/Properties/data/intersection-types.php \
4748
src tests compiler/src
4849

4950
cs:

‎src/Rules/Functions/ExistingClassesInTypehintsRule.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function processNode(Node $node, Scope $scope): array
5555
sprintf(
5656
'Function %s() has unresolvable native return type.',
5757
$functionName
58-
),
58+
)
5959
);
6060
}
6161

‎src/Rules/Methods/ExistingClassesInTypehintsRule.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function processNode(Node $node, Scope $scope): array
6464
'Method %s::%s() has unresolvable native return type.',
6565
$className,
6666
$methodName
67-
),
67+
)
6868
);
6969
}
7070

‎tests/PHPStan/Rules/Properties/data/intersection-types.php‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php// lint >= 8.1
1+
<?php
22

33
namespace PropertyIntersectionTypes;
44

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /