Subversion Repositories oidplus

Rev

Rev 1138 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
585 daniel-mar 1
parameters:
1138 daniel-mar 2
	level: 6
730 daniel-mar 3
	fileExtensions:
4
		- php
5
		- phps
585 daniel-mar 6
	paths:
7
		- .
8
	excludePaths:
9
		analyse:
597 daniel-mar 10
			- vendor
868 daniel-mar 11
			- plugins/viathinksoft/publicPages/100_whois/whois/xml/vendor
12
			- plugins/viathinksoft/publicPages/100_whois/whois/json/vendor
585 daniel-mar 13
		analyseAndScan:
14
			- userdata/cache/phpstan
15
	tmpDir: userdata/cache/phpstan
588 daniel-mar 16
	bootstrapFiles:
17
		- includes/oidplus.inc.php
591 daniel-mar 18
	ignoreErrors:
19
		- '#is always (true|false)\.#'
20
		- '#Call to function assert\(\) with false will always evaluate to false\.#'
603 daniel-mar 21
		#- '#with no typehint specified\.#'
1138 daniel-mar 22
		# Level 6:
23
		- '#Method (.+) has parameter (.+) with no value type specified in iterable type array.#'
24
		- '#Method (.+) return type has no value type specified in iterable type array.#'
25
		- '#Property (.+) type has no value type specified in iterable type array.#'
26
		- '#Method (.+) has no return type specified.#'
27
		- '#Method (.+) has parameter (.+) with no type specified.#'
28
		- '#Function (.+) has parameter (.+) with no value type specified in iterable type array.#'
29
		- '#Function (.+) has no return type specified.#'
30
		- '#Property (.+) has no type specified.#'
31
		- '#Function (.+) return type has no value type specified in iterable type array.#'
1143 daniel-mar 32