Skip to content

Commit 9b04602

Browse files
committed
Fix SessionHandlerInterface::read return type
1 parent 02eb0a8 commit 9b04602

File tree

3 files changed

+60
-1
lines changed

3 files changed

+60
-1
lines changed

resources/functionMap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10421,7 +10421,7 @@
1042110421
'SessionHandlerInterface::destroy' => ['bool', 'session_id'=>'string'],
1042210422
'SessionHandlerInterface::gc' => ['int|false', 'maxlifetime'=>'int'],
1042310423
'SessionHandlerInterface::open' => ['bool', 'save_path'=>'string', 'name'=>'string'],
10424-
'SessionHandlerInterface::read' => ['string', 'session_id'=>'string'],
10424+
'SessionHandlerInterface::read' => ['string|false', 'session_id'=>'string'],
1042510425
'SessionHandlerInterface::write' => ['bool', 'session_id'=>'string', 'session_data'=>'string'],
1042610426
'SessionIdInterface::create_sid' => ['string'],
1042710427
'SessionUpdateTimestampHandler::updateTimestamp' => ['bool', 'id'=>'string', 'data'=>'string'],

tests/PHPStan/Rules/Comparison/StrictComparisonOfDifferentTypesRuleTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -1006,4 +1006,9 @@ public function testBug12772(): void
10061006
$this->analyse([__DIR__ . '/data/bug-12772.php'], []);
10071007
}
10081008

1009+
public function testBug12748(): void
1010+
{
1011+
$this->analyse([__DIR__ . '/data/bug-12748.php'], []);
1012+
}
1013+
10091014
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?php declare(strict_types = 1); // lint >= 8.0
2+
3+
namespace Bug12748;
4+
5+
use SessionHandlerInterface;
6+
7+
class HelloWorld
8+
{
9+
public function getHandler(): SessionHandlerInterface
10+
{
11+
return new SessHandler;
12+
}
13+
}
14+
15+
class SessHandler implements SessionHandlerInterface
16+
{
17+
18+
public function close(): bool
19+
{
20+
return true;
21+
}
22+
23+
public function destroy(string $id): bool
24+
{
25+
return true;
26+
}
27+
28+
public function gc(int $max_lifetime): int|false
29+
{
30+
return false;
31+
}
32+
33+
public function open(string $path, string $name): bool
34+
{
35+
return true;
36+
}
37+
38+
public function read(string $id): string|false
39+
{
40+
return false;
41+
}
42+
43+
public function write(string $id, string $data): bool
44+
{
45+
return true;
46+
}
47+
}
48+
49+
$sessionHandler = (new HelloWorld)->getHandler();
50+
$session = $sessionHandler->read('123');
51+
52+
if ($session === false) {
53+
return null;
54+
}

0 commit comments

Comments
 (0)