����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 13.59.0.231 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/bofirmacademy.com/vendor/ankitpokhrel/tus-php/src/Cache/ |
Upload File : |
<?php namespace TusPhp\Cache; interface Cacheable { /** @see https://tools.ietf.org/html/rfc7231#section-7.1.1.1 */ public const RFC_7231 = 'D, d M Y H:i:s \G\M\T'; /** * Get data associated with the key. * * @param string $key * @param bool $withExpired * * @return mixed */ public function get(string $key, bool $withExpired = false); /** * Set data to the given key. * * @param string $key * @param mixed $value * * @return mixed */ public function set(string $key, $value); /** * Delete data associated with the key. * * @param string $key * * @return bool */ public function delete(string $key): bool; /** * Delete all data associated with the keys. * * @param array $keys * * @return bool */ public function deleteAll(array $keys): bool; /** * Get time to live. * * @return int */ public function getTtl(): int; /** * Get cache keys. * * @return array */ public function keys(): array; /** * Set cache prefix. * * @param string $prefix * * @return self */ public function setPrefix(string $prefix): self; /** * Get cache prefix. * * @return string */ public function getPrefix(): string; }