/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Version.php (1558B)
* @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;
/**
* This class contains the current prestashop version constants.
* This will be updated everytime we release a new version.
*/
final class Version
{
public const VERSION = '8.2.3';
public const MAJOR_VERSION_STRING = '8';
public const MAJOR_VERSION = 8;
public const MINOR_VERSION = 2;
public const RELEASE_VERSION = 3;
// This class should not be instanciated
private function __construct()
{
}
}