Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/main/lib/data/localstorage/storage/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/main/lib/data/localstorage/storage/storageinterface.php

<?php
namespace Bitrix\Main\Data\LocalStorage\Storage;

interface StorageInterface
{
	/**
	 * @param string   $key
	 * @param int|null $ttl
	 * @return array
	 */
	public function read(string $key, int $ttl);

	public function write(string $key, $value, int $ttl);
}