1 | <?php |
||
25 | class ComparatorVisitor extends Visitor |
||
26 | { |
||
27 | use VisitorTrait; |
||
28 | |||
29 | /** |
||
30 | * @param QueryBuilder $queryBuilder |
||
31 | */ |
||
32 | public function __construct(QueryBuilder $queryBuilder) |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function visitComparator(Comparator $comparator) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function visitReverseComparator(ReverseComparator $comparator) |
||
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | */ |
||
63 | public function visitCallbackComparator(CallbackComparator $comparator) |
||
67 | |||
68 | /** |
||
69 | * {@inheritdoc} |
||
70 | */ |
||
71 | public function visitMultiComparator(MultiComparator $comparator) |
||
76 | |||
77 | /** |
||
78 | * {@inheritdoc} |
||
79 | */ |
||
80 | public function visitSelectorComparator(SelectorComparator $comparator) |
||
85 | } |
||
86 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.