for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework.
*
* @license MIT
* @author Anton Titov (Wolfy-J)
*/
declare(strict_types=1);
namespace Spiral\Session\Handler;
* Blackhole.
final class NullHandler implements \SessionHandlerInterface
{
* @inheritdoc
public function close(): bool
return true;
}
public function destroy($session_id): bool
public function gc($maxlifetime): bool
public function open($save_path, $session_id): bool
public function read($session_id): string
return '';
public function write($session_id, $session_data): bool