Skip to content

Commit 55d53ad

Browse files
committed
Fix SessionHandlerInterface::read return type
1 parent 3b421cd commit 55d53ad

File tree

3 files changed

+56
-1
lines changed

3 files changed

+56
-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
@@ -1001,4 +1001,9 @@ public function testHashing(): void
10011001
]);
10021002
}
10031003

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

0 commit comments

Comments
 (0)