* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 */ namespace PrestaShop\Module\PrestashopFacebook\Factory; use PrestaShop\ModuleLibCacheDirectoryProvider\Cache\CacheDirectoryProvider; class CacheFactory { /** * @return string */ public static function getCachePath() { $cacheDirectoryProvider = new CacheDirectoryProvider( _PS_VERSION_, _PS_ROOT_DIR_, _PS_MODE_DEV_ ); return $cacheDirectoryProvider->getPath(); } }