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 | 31 | public function __construct($name, $regexp) { |
|
38 | |||
39 | /** |
||
40 | * @inheritdocs |
||
41 | */ |
||
42 | public function _compile() { |
||
52 | |||
53 | /** |
||
54 | * @inheritdocs |
||
55 | */ |
||
56 | 29 | public function compile_to_source(array &$custom_closures) { |
|
64 | |||
65 | /** |
||
66 | * @inheritdocs |
||
67 | */ |
||
68 | 11 | public function for_types(array $existing_types) { |
|
71 | } |
||
72 |