/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Feature
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Feature/FeatureInterface.php (1489B)
* @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);
}