/home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Security
NameSizeModeActions
OAuth2/-0755rm
OpenSsl/-0755rm
FolderGuardInterface.php15470644editdlrm
GeneralConfiguration.php23330644editdlrm
Hashing.php12560644editdlrm
HtaccessFolderGuard.php25380644editdlrm
PasswordGenerator.php31270644editdlrm
PasswordPolicyConfiguration.php42560644editdlrm
TokenAuthenticator.php44290644editdlrm
Edit: /home/sharedstore/public_html/prestashop.sharedstore.ma/src/Core/Security/FolderGuardInterface.php (1547B)
* @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\Security; use PrestaShop\PrestaShop\Core\Exception\FileNotFoundException; use PrestaShop\PrestaShop\Core\Exception\IOException; /** * Interface used to protect a folder (via htaccess file, index.php redirection file, ...) */ interface FolderGuardInterface { /** * @param string $folderPath * * @throws IOException * @throws FileNotFoundException */ public function protectFolder($folderPath); }