/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core
NameSizeModeActions
Action/-0755rm
Addon/-0755rm
Address/-0755rm
AttributeGroup/-0755rm
B2b/-0755rm
Backup/-0755rm
Cache/-0755rm
Cart/-0755rm
Category/-0755rm
Checkout/-0755rm
CMS/-0755rm
CommandBus/-0755rm
Configuration/-0755rm
ConstraintValidator/-0755rm
Country/-0755rm
CreditSlip/-0755rm
Crypto/-0755rm
Currency/-0755rm
Customer/-0755rm
Data/-0755rm
Domain/-0755rm
Email/-0755rm
Employee/-0755rm
Encoding/-0755rm
Exception/-0755rm
Export/-0755rm
Feature/-0755rm
FeatureFlag/-0755rm
File/-0755rm
Filter/-0755rm
Form/-0755rm
Foundation/-0755rm
Geolocation/-0755rm
Grid/-0755rm
Group/-0755rm
Help/-0755rm
Hook/-0755rm
Image/-0755rm
Import/-0755rm
Kpi/-0755rm
Language/-0755rm
Localization/-0755rm
MailTemplate/-0755rm
MerchandiseReturn/-0755rm
Meta/-0755rm
Module/-0755rm
Multistore/-0755rm
Order/-0755rm
Payment/-0755rm
PDF/-0755rm
Product/-0755rm
Proxy/-0755rm
Repository/-0755rm
Routing/-0755rm
Search/-0755rm
Security/-0755rm
Session/-0755rm
Shop/-0755rm
SqlManager/-0755rm
Stock/-0755rm
String/-0755rm
Support/-0755rm
Tax/-0755rm
Team/-0755rm
Theme/-0755rm
Translation/-0755rm
Util/-0755rm
Validation/-0755rm
Webservice/-0755rm
ConfigurationInterface.php12250644editdlrm
ContainerBuilder.php22770644editdlrm
EnvironmentInterface.php16860644editdlrm
Version.php15580644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/EnvironmentInterface.php (1686B)
* @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; /** * EnvironmentInterface is used to store/access environment information like the current * environment name or to know if debug mode is enabled. */ interface EnvironmentInterface { /** * Indicates the current environment (dev|prod|test) * * @return string */ public function getName(); /** * Indicates if debug mode is enabled * * @return bool */ public function isDebug(); /** * Indicates the path to the cache directory * * @return string */ public function getCacheDir(); }