/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/App/CacheInterface.php
57 строк
1 KB
Alexandra Zota
ACP2E-4362: Additional CE copyright updates for 2.4.9-beta1
29 ноя 2025, 18:29
29 ноя 2025, 18:29
27ab0ac
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\App; /** * System cache model interface * * @api * @since 100.0.2 */ interface CacheInterface { /** * Get cache frontend API object * * @return \Magento\Framework\Cache\FrontendInterface */ public function getFrontend(); /** * Load data from cache by id * * @param string $identifier * @return string */ public function load($identifier); /** * Save data * * @param string $data * @param string $identifier * @param array $tags * @param int $lifeTime * @return bool */ public function save($data, $identifier, $tags = [], $lifeTime = null); /** * Remove cached data by identifier * * @param string $identifier * @return bool */ public function remove($identifier); /** * Clean cached data by specific tag * * @param array $tags * @return bool */ public function clean($tags = []); }