Skip to content

Commit 80e05b7

Browse files
committed
Merge branch 'phpstan-fix' into 'master'
Phpstan fix See merge request head.trackingsoft/micro-kernel!4
2 parents 031cd46 + 30aa35a commit 80e05b7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Configuration/ApplicationConfigurationInterface.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
interface ApplicationConfigurationInterface
66
{
77
/**
8-
* @param string $key
9-
* @param mixed $default
8+
* @param string $key
9+
* @param mixed|null $default
10+
* @param bool $nullable
1011
* @return mixed
1112
*/
12-
public function get(string $key, mixed $default = null): mixed;
13+
public function get(string $key, mixed $default = null, bool $nullable = true): mixed;
1314
}

0 commit comments

Comments
 (0)