Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpstan.neon - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca5b831af713916ec9def506f80020f8feba8507 (plain)
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
34
includes:
    - phpstan-baseline.neon
parameters:

	
	paths:
		- src
	
	tmpDir: ./.build/phpstan

	# The level 8 is the highest level
	level: 3

	autoload_files:
		- vendor/adodb/adodb-php/adodb.inc.php
		- .configs/debug.kint.php
		- src/lib.inc.php
		- config.inc.php
		- vendor/adodb/adodb-php/drivers/adodb-postgres9.inc.php

	excludes_analyse:
		- .build/*
		- tests/*
		- assets/*
		- temp/*
		- vendor/*
		- src/classes/ADO*		
		- src/router.php

	treatPhpDocTypesAsCertain: false