-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathphpstan.neon
More file actions
23 lines (23 loc) · 802 Bytes
/
phpstan.neon
File metadata and controls
23 lines (23 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
parameters:
level: max
reportUnmatchedIgnoredErrors: false
paths:
- src
ignoreErrors:
# PHPMD annotations (@SuppressWarnings(PHPMD.X)) are not PHPStan tags.
-
identifier: phpDoc.parseError
message: '#@SuppressWarnings#'
# Aura\Html\HelperLocator exposes helpers via __get/__call magic methods.
-
identifier: method.notFound
message: '#Aura\\Html\\HelperLocator::(input|form)#'
path: src/AbstractForm.php
# SetAntiCsrfTrait is part of the public API for consumers to compose.
-
identifier: trait.unused
path: src/SetAntiCsrfTrait.php
# AbstractForm narrows Fieldset::$filter (FilterInterface) to SubjectFilter for typed filter access.
-
identifier: property.phpDocType
message: '#AbstractForm::\$filter#'