Skip to content

Commit

Permalink
Move type back to @var
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Hamilton <[email protected]>
  • Loading branch information
TotalWipeOut authored and weierophinney committed Jan 23, 2025
1 parent 1dd8738 commit 799aeb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Config/SessionConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ class SessionConfig extends StandardConfig
* Name of the save handler currently in use. This will either be a PHP
* built-in save handler name, or the name of a SessionHandlerInterface
* class being used as a save handler.
*
* @var null|string|SaveHandlerInterface
*/
protected null|string|SaveHandlerInterface $saveHandler = null;
protected $saveHandler;

/** @var string session.serialize_handler */
protected $serializeHandler;
Expand Down

0 comments on commit 799aeb8

Please sign in to comment.