Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/elementor/includes/interfaces/has-validation.php
Keine Baseline-Datei – Diff nur gegen leer.
1
-
1
+
<?php
2
+
3
+
namespace Elementor;
4
+
5
+
/**
6
+
* Elementor has validation interface.
7
+
*
8
+
* @param array $control_data The value to validate.
9
+
* @return bool True on valid, throws an exception on error.
10
+
* @throws \Exception If validation fails.
11
+
*/
12
+
interface Has_Validation {
13
+
public function validate( array $control_data ): bool;
14
+
}
15
+