File manager - Edit - /home/xfekoga/grenier/wp-content/plugins/defender-security/src/component/security-tweaks/servers/class-php-wasm.php
Back
<?php /** * Responsible for managing server configurations related to security tweaks . * * @package WP_Defender\Component\Security_Tweaks\Servers */ namespace WP_Defender\Component\Security_Tweaks\Servers; /** * Class for case when we need to "compile PHP to WebAssembly". * * @since 4.5.1 */ class PHP_Wasm { /** * Service type. * * @var string */ private $type = null; /** * Constructor for class. * * @param string $type The type of the security tweak. */ public function __construct( $type ) { $this->type = $type; } /** * Check whether the issue has been resolved or not. * * @return bool */ public function check() { // Todo:add logic using $this->type for 'prevent-php-executed' & 'protect-information'. return false; } /** * Process the rule. * * @return bool */ public function process() { return true; } /** * Revert the rule. * * @return bool */ public function revert() { return true; } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings