/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/Indexer/StateInterface.php
74 строки
1 KB
Alexandra Zota
ACP2E-4019: CE copyright updates for 2.4.9-beta1
22 окт 2025, 17:47
22 окт 2025, 17:47
1b769b7
Код
Авторство
О чём код?
<?php /** * Copyright 2015 Adobe * All Rights Reserved. */ namespace Magento\Framework\Indexer; /** * @api Retrieve status of the Indexer * @since 100.0.2 */ interface StateInterface { /** * Indexer statuses */ public const STATUS_WORKING = 'working'; public const STATUS_VALID = 'valid'; public const STATUS_INVALID = 'invalid'; public const STATUS_SUSPENDED = 'suspended'; /** * Return indexer id * * @return string */ public function getIndexerId(); /** * Set indexer id * * @param string $value * @return $this */ public function setIndexerId($value); /** * Return status * * @return string */ public function getStatus(); /** * Return updated * * @return string */ public function getUpdated(); /** * Set updated * * @param string $value * @return $this */ public function setUpdated($value); /** * Fill object with state data by view ID * * @param string $indexerId * @return $this */ public function loadByIndexer($indexerId); /** * Status setter * * @param string $status * @return $this */ public function setStatus($status); }