Skip to content

Commit 6fb9e39

Browse files
committed
type
1 parent be45ecb commit 6fb9e39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Composer/ComposerOutdatedResponseProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ public function provide(): string
3939
private function resolveProjectComposerHash(): ?string
4040
{
4141
if (file_exists(getcwd() . '/composer.lock')) {
42-
return md5_file(getcwd() . '/composer.lock');
42+
return (string) md5_file(getcwd() . '/composer.lock');
4343
}
4444

4545
if (file_exists(getcwd() . '/composer.json')) {
46-
return md5_file(getcwd() . '/composer.json');
46+
return (string) md5_file(getcwd() . '/composer.json');
4747
}
4848

4949
return null;

0 commit comments

Comments
 (0)