Browse
For agents
About
Flexible Subscriptions
/
trunk
Flexible Subscriptions
vtrunk
Switch version
1.8.5
1.8.4
1.8.3
1.8.2
1.8.1
1.8.0
1.7.19
1.7.18
1.7.17
1.7.16
1.7.15
1.7.14
1.7.13
1.7.12
1.7.11
trunk
1.0.0
1.0.1
1.1.0
1.1.1
1.1.2
1.1.3
1.2.0
1.2.1
1.2.2
All 62 releases
Overview
Code
flexible-subscriptions
/
src
/
Admin
/
QueryEnhancer
/
QueryEnhancer.php
QueryEnhancer.php
in Flexible Subscriptions trunk, at src/Admin/QueryEnhancer/QueryEnhancer.php
14 lines
237 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
declare
(
strict_types
=
1
)
;
4
5
namespace
WPDesk
\
FlexibleSubscriptions
\
Admin
\
QueryEnhancer
;
6
7
interface
QueryEnhancer
{
8
9
/**
10
* Add or modify current {
@see
\WP_Query} args.
11
*/
12
public
function
enhance_query
(
array
$
query
)
:
array
;
13
}
14