| 1 | <?php |
||
| 8 | abstract class AbstractQueryVisitor { |
||
| 9 | |||
| 10 | protected $initialValue = 0; |
||
| 11 | |||
| 12 | protected $memo; |
||
| 13 | |||
| 14 | 1 | public function __construct() { |
|
| 17 | |||
| 18 | public function getMemo() { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param array $args |
||
| 24 | * @param FieldConfig $fieldConfig |
||
| 25 | * @param int $childScore |
||
| 26 | * |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | abstract public function visit(array $args, FieldConfig $fieldConfig, $childScore = 0); |
||
| 30 | } |