* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Feature; /** * Defines how we should access to a feature. */ interface FeatureInterface { /** * @return bool */ public function isUsed(); /** * @return bool */ public function isActive(); public function enable(); public function disable(); /** * @param bool $status */ public function update($status); }