-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
33 lines (28 loc) · 1.13 KB
/
phpstan.neon
File metadata and controls
33 lines (28 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
parameters:
level: 6
phpVersion: 80200
# Dein Modulverzeichnis analysieren
paths:
- ./
# Stubs mit IPS-Funktionen
scanDirectories:
- %env.IPS_STUBS_PATH%
excludePaths:
analyse:
- %env.IPS_STUBS_PATH%/*
ignoreErrors:
- '#Call to an undefined method [a-zA-Z0-9\\_]+::SetVisualizationType\(\)#'
- '#Call to an undefined method [a-zA-Z0-9\\_]+::UpdateVisualizationValue\(\)#'
- '#Function AC_AddLoggedValues not found.#'
- '#Function AC_DeleteVariableData not found.#'
- '#Function AC_GetLoggedValues not found.#'
- '#Function AC_GetLoggingStatus not found.#'
- '#Function AC_SetLoggingStatus not found.#'
- '#Function AC_SetAggregationType not found.#'
- '#Function AC_SetCounterIgnoreZeros not found.#'
- '#Function AC_ReAggregateVariable not found.#'
- '#Function IPS_PresentationExists not found.#'
- '#Function VISU_PostNotificationEx not found.#'
- '#Function WFC_PushNotification not found.#'
# Supress ignore Errors
reportUnmatchedIgnoredErrors: false