1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php // phpcs:ignoreFile
namespace AutomateWoo\Rules;
defined( 'ABSPATH' ) || exit;
/** * @class Abstract_String */ abstract class Abstract_String extends Rule {
public $type = 'string';
function __construct() { $this->compare_types = $this->get_string_compare_types(); parent::__construct(); }
}
|