Skip to content

Commit 3449336

Browse files
Upgraded static analyzers
1 parent a399cb5 commit 3449336

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

src/Result/Error.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ public function success()
6464
*/
6565
public function mapSuccess(callable $f)
6666
{
67+
/** @var \Dotenv\Result\Result<S,E> */
6768
return self::create($this->value);
6869
}
6970

src/Result/Success.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ public function error()
8888
*/
8989
public function mapError(callable $f)
9090
{
91+
/** @var \Dotenv\Result\Result<T,F> */
9192
return self::create($this->value);
9293
}
9394
}

vendor-bin/phpstan/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"phpstan/phpstan": "0.12.68",
3+
"phpstan/phpstan": "0.12.88",
44
"phpstan/extension-installer": "1.1.0",
55
"phpstan/phpstan-deprecation-rules": "0.12.6",
66
"phpstan/phpstan-strict-rules": "0.12.9",

vendor-bin/psalm/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"require": {
3-
"psalm/phar": "4.3.1"
3+
"psalm/phar": "4.7.1"
44
},
55
"config": {
66
"preferred-install": "dist"

0 commit comments

Comments
 (0)