1 | <?php |
||
19 | class _PropertyMatches extends Predicate { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $name; |
||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $regexp; |
||
29 | |||
30 | 30 | public function __construct($name, $regexp) { |
|
38 | |||
39 | /** |
||
40 | * @inheritdocs |
||
41 | */ |
||
42 | 28 | public function compile() { |
|
52 | |||
53 | /** |
||
54 | * @inheritdocs |
||
55 | */ |
||
56 | 11 | public function for_types($existing_types) { |
|
59 | } |
||
60 |