Skip to content

Commit 1523d2b

Browse files
fix paths
1 parent a4287a5 commit 1523d2b

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

phpstan-example/test.php

Lines changed: 0 additions & 13 deletions
This file was deleted.

phpstan-example/phpstan.neon renamed to phpstan.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
parameters:
2-
level: 5
2+
level: 0
33
paths:
44
- .
55
excludePaths:

test.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php declare(strict_types = 1);
2+
3+
class HelloWorld
4+
{
5+
public function sayHello(DateTimeImutable $date): void
6+
{
7+
echo 'Hello, ' . $date->format('j. n. Y');
8+
}
9+
}

0 commit comments

Comments
 (0)