-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpstan.neon
33 lines (32 loc) · 1.75 KB
/
phpstan.neon
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
includes:
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
parameters:
ignoreErrors:
-
message: '#Call to an undefined method Illuminate\\Contracts\\Filesystem\\Filesystem::path\(\).#'
path: src/Bridge/Laravel/Filesystem.php
-
message: '#Constant XDEBUG_[A-Z_]+ not found.#'
path: tests/bootstrap.php
-
message: '/Parameter #1 \$function of function call_user_func_array expects callable\(\): mixed, array\([A-Z][\w\\]+|mixed, string\) given./'
path: src/Bridge/Laravel/Filesystem.php
-
message: '/Parameter #1 \$function of function call_user_func_array expects callable\(\): mixed, array\(Illuminate\\Container\\Container, string\) given./'
path: tests/Stubs/Vendor/Illuminate/Contracts/Foundation/ApplicationStub.php
-
message: '/Parameter #1 \$function of function call_user_func_array expects callable\(\): mixed, array\([\w\\]+, string\) given./'
path: src/ORM
-
message: '#Variable property access on \$this\(EoneoPay\\Externals\\ORM\\Entity\).#'
path: src/ORM/Entity.php
-
message: '#Variable property access on \$this\(EoneoPay\\Externals\\ORM\\SimpleEntity\).#'
path: src/ORM/SimpleEntity.php
-
message: '#Variable property access on \$this\(Tests\\EoneoPay\\Externals\\Stubs\\ORM\\Entities\\EntityStub|TransformerStub\).#'
path: src/ORM/Traits/HasTransformers.php
-
message: '#Call to protected method setWithSetter\(\) of class Tests\\EoneoPay\\Externals\\Stubs\\ORM\\Entities\\SimpleEntityStub\.#'
path: tests/ORM/SimpleEntityTest.php