We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3474aa commit c67f708Copy full SHA for c67f708
1 file changed
app/Config/Session.php
@@ -4,6 +4,7 @@
4
5
use CodeIgniter\Config\BaseConfig;
6
use CodeIgniter\Session\Handlers\FileHandler;
7
+use SessionHandlerInterface;
8
9
class Session extends BaseConfig
10
{
@@ -18,7 +19,7 @@ class Session extends BaseConfig
18
19
* - `CodeIgniter\Session\Handlers\MemcachedHandler`
20
* - `CodeIgniter\Session\Handlers\RedisHandler`
21
*
- * @phpstan-var class-string
22
+ * @phpstan-var class-string<SessionHandlerInterface>
23
*/
24
public string $driver = FileHandler::class;
25
0 commit comments