* @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\Util\Url; /** * Interface UrlFileCheckerInterface defines contract for UrlFileChecker. */ interface UrlFileCheckerInterface { /** * Check if .htaccess file for Front Office is writable. * * @return bool */ public function isHtaccessFileWritable(); /** * Check if robots.txt file for Front Office is writable. * * @return bool */ public function isRobotsFileWritable(); }