Merge branch 'bug_9239' into 3.12-master
[koha.git] / Koha / QueryParser / Driver / PQF / query_plan / facet.pm
1 package Koha::QueryParser::Driver::PQF::query_plan::facet;
2 use base 'OpenILS::QueryParser::query_plan::facet';
3
4 use strict;
5 use warnings;
6
7 =head1 NAME
8
9 Koha::QueryParser::Driver::PQF::query_plan::facet - facet subclass for PQF driver
10
11 =head1 FUNCTIONS
12
13 =head2 Koha::QueryParser::Driver::PQF::query_plan::facet::target_syntax
14
15     my $pqf = $facet->target_syntax($server);
16
17 Transforms an OpenILS::QueryParser::query_plan::facet object into PQF. Do not use
18 directly.
19
20 =cut
21
22 sub target_syntax {
23     my ($self, $server) = @_;
24
25     return '';
26 }
27
28 1;