Subversion Repositories oidplus

Rev

Rev 594 | Rev 601 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
585 daniel-mar 1
parameters:
597 daniel-mar 2
	level: 5
585 daniel-mar 3
	paths:
4
		- .
5
	excludePaths:
6
		analyse:
597 daniel-mar 7
			- vendor
585 daniel-mar 8
			- includes/classes/http_class.class.php
9
		analyseAndScan:
10
			- userdata/cache/phpstan
11
	tmpDir: userdata/cache/phpstan
588 daniel-mar 12
	bootstrapFiles:
13
		- includes/oidplus.inc.php
591 daniel-mar 14
		- includes/classes/http_class.class.php
15
	ignoreErrors:
16
		- '#is always (true|false)\.#'
17
		- '#Call to function assert\(\) with false will always evaluate to false\.#'
592 daniel-mar 18
 
597 daniel-mar 19
# Bugs in PHPStan:
20
# - "Strict comparison using === between *NEVER* and 'TB' will always evaluate to false."
21
#   https://github.com/phpstan/phpstan/issues/5062
22
# - Wrong signatures of gmp_div, odbc_exec and unregister_tick_function
23
#   https://github.com/phpstan/phpstan-src/pull/533