return $this->started;
} /**
* @return void
*/
public function setMetadataBag(MetadataBag
$bag = null
) { if (1 > \
func_num_args()) { trigger_deprecation('symfony/http-foundation', '6.2', 'Calling "%s()" without any arguments is deprecated, pass null explicitly instead.', __METHOD__
);
} $this->metadataBag =
$bag ??
new MetadataBag();
} /**
* Gets the MetadataBag.
*/
public function getMetadataBag(): MetadataBag
{ return $this->metadataBag;
} /**
* Generates a session ID.
*
* This doesn't need to be particularly cryptographically secure since this is just
* a mock.
*/