Edit File by line
/home/zeestwma/richards.../wp-conte.../plugins/elemento.../includes/interfac...
File: has-validation.php
<?php
[0] Fix | Delete
[1] Fix | Delete
namespace Elementor;
[2] Fix | Delete
[3] Fix | Delete
/**
[4] Fix | Delete
* Elementor has validation interface.
[5] Fix | Delete
*
[6] Fix | Delete
* @param array $control_data The value to validate.
[7] Fix | Delete
* @return bool True on valid, throws an exception on error.
[8] Fix | Delete
* @throws \Exception If validation fails.
[9] Fix | Delete
*/
[10] Fix | Delete
interface Has_Validation {
[11] Fix | Delete
public function validate( array $control_data ): bool;
[12] Fix | Delete
}
[13] Fix | Delete
[14] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function