Skip to content

Commit 6fc71fe

Browse files
committed
phpstan setup
1 parent cc4c218 commit 6fc71fe

5 files changed

+92
-0
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010
/phpcs.xml export-ignore
1111
/phpunit.xml.dist export-ignore
1212
/test/ export-ignore
13+
/phpstan.neon.dist export-ignore

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
/laminas-mkdoc-theme/
77
/phpunit.xml
88
/vendor/
9+
/phpstan.neon

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
"mikey179/vfsstream": "^1.6.8",
4242
"ocramius/proxy-manager": "^2.1.1",
4343
"phpbench/phpbench": "^0.13.0",
44+
"phpstan/phpstan": "^0.12.28",
4445
"phpunit/phpunit": "^7.5.20"
4546
},
4647
"provide": {

phpstan-baseline.neon

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
parameters:
2+
ignoreErrors:
3+
-
4+
message: "#^Return typehint of method Laminas\\\\ServiceManager\\\\AbstractFactory\\\\ReflectionBasedAbstractFactory\\:\\:__invoke\\(\\) has invalid type Laminas\\\\ServiceManager\\\\AbstractFactory\\\\DispatchableInterface\\.$#"
5+
count: 1
6+
path: src/AbstractFactory/ReflectionBasedAbstractFactory.php
7+
8+
-
9+
message: "#^PHPDoc tag @param has invalid value \\(\\$name\\)\\: Unexpected token \"\\$name\", expected type at offset 133$#"
10+
count: 1
11+
path: src/AbstractFactoryInterface.php
12+
13+
-
14+
message: "#^PHPDoc tag @param has invalid value \\(\\$requestedName\\)\\: Unexpected token \"\\$requestedName\", expected type at offset 153$#"
15+
count: 1
16+
path: src/AbstractFactoryInterface.php
17+
18+
-
19+
message: "#^PHPDoc tag @param has invalid value \\(\\$name\\)\\: Unexpected token \"\\$name\", expected type at offset 111$#"
20+
count: 1
21+
path: src/AbstractFactoryInterface.php
22+
23+
-
24+
message: "#^PHPDoc tag @param has invalid value \\(\\$requestedName\\)\\: Unexpected token \"\\$requestedName\", expected type at offset 131$#"
25+
count: 1
26+
path: src/AbstractFactoryInterface.php
27+
28+
-
29+
message: "#^PHPDoc tag @throws with type Laminas\\\\ServiceManager\\\\Exception\\\\ServiceNotCreatedException\\|Laminas\\\\ServiceManager\\\\Exception\\\\ServiceNotFoundException\\|Laminas\\\\ServiceManager\\\\Factory\\\\ContainerException is not subtype of Throwable$#"
30+
count: 1
31+
path: src/Factory/DelegatorFactoryInterface.php
32+
33+
-
34+
message: "#^PHPDoc tag @throws with type Laminas\\\\ServiceManager\\\\Exception\\\\ServiceNotCreatedException\\|Laminas\\\\ServiceManager\\\\Exception\\\\ServiceNotFoundException\\|Laminas\\\\ServiceManager\\\\Factory\\\\ContainerException is not subtype of Throwable$#"
35+
count: 1
36+
path: src/Factory/FactoryInterface.php
37+
38+
-
39+
message: "#^PHPDoc tag @param has invalid value \\(\\$instance\\)\\: Unexpected token \"\\$instance\", expected type at offset 43$#"
40+
count: 1
41+
path: src/InitializerInterface.php
42+
43+
-
44+
message: "#^PHPDoc tag @throws with type Laminas\\\\ServiceManager\\\\ContainerException\\|Laminas\\\\ServiceManager\\\\Exception\\\\InvalidServiceException is not subtype of Throwable$#"
45+
count: 1
46+
path: src/PluginManagerInterface.php
47+
48+
-
49+
message: "#^PHPDoc tag @throws with type Psr\\\\Container\\\\ContainerExceptionInterface is not subtype of Throwable$#"
50+
count: 1
51+
path: src/ServiceLocatorInterface.php
52+
53+
-
54+
message: "#^PHPDoc tag @param has invalid value \\(bool\\)\\: Unexpected token \"\\\\n \", expected variable at offset 89$#"
55+
count: 1
56+
path: src/ServiceManager.php
57+
58+
-
59+
message: "#^Closure invoked with 4 parameters, 0 required\\.$#"
60+
count: 1
61+
path: src/ServiceManager.php
62+
63+
-
64+
message: "#^PHPDoc tag @throws with type Laminas\\\\ServiceManager\\\\Exception\\\\ExceptionInterface is not subtype of Throwable$#"
65+
count: 1
66+
path: src/ServiceManager.php
67+
68+
-
69+
message: "#^PHPDoc tag @param references unknown parameter\\: \\$abstractFactories$#"
70+
count: 1
71+
path: src/ServiceManager.php
72+
73+
-
74+
message: "#^PHPDoc tag @param has invalid value \\(\\$className\\)\\: Unexpected token \"\\$className\", expected type at offset 18$#"
75+
count: 1
76+
path: src/Tool/ConfigDumper.php
77+
78+
-
79+
message: "#^PHPDoc tag @param has invalid value \\(\\$className\\)\\: Unexpected token \"\\$className\", expected type at offset 18$#"
80+
count: 1
81+
path: src/Tool/FactoryCreator.php
82+

phpstan.neon.dist

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
includes:
2+
- phpstan-baseline.neon
3+
4+
parameters:
5+
level: 3
6+
paths:
7+
- src

0 commit comments

Comments
 (0)