We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4287a5 commit 1523d2bCopy full SHA for 1523d2b
phpstan-example/test.php
phpstan-example/phpstan.neon renamed to phpstan.neon
@@ -1,5 +1,5 @@
1
parameters:
2
- level: 5
+ level: 0
3
paths:
4
- .
5
excludePaths:
test.php
@@ -0,0 +1,9 @@
+<?php declare(strict_types = 1);
+
+class HelloWorld
+{
+ public function sayHello(DateTimeImutable $date): void
6
+ {
7
+ echo 'Hello, ' . $date->format('j. n. Y');
8
+ }
9
+}
0 commit comments