forked from php-webdriver/php-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
18 lines (15 loc) · 699 Bytes
/
phpstan.neon
File metadata and controls
18 lines (15 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
parameters:
level: 2
paths:
- lib/
- tests/
ignoreErrors:
# To be fixed:
- '#Call to an undefined method Facebook\\WebDriver\\WebDriver::getTouch\(\)#'
- '#Call to an undefined method Facebook\\WebDriver\\WebDriverElement::getCoordinates\(\)#'
- '#Call to an undefined method Facebook\\WebDriver\\WebDriverElement::equals\(\)#'
- '#Unsafe usage of new static\(\)#'
# Parameter is intentionally not part of signature to not break BC
- message: '#PHPDoc tag \@param references unknown parameter: \$isW3cCompliant#'
path: 'lib/Remote/RemoteWebDriver.php'
inferPrivatePropertyTypeFromConstructor: true