diff options
author | emkael <emkael@tlen.pl> | 2017-01-18 20:07:16 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-01-18 20:07:16 +0100 |
commit | 9a9c04512e5dcb77c7fe5d850e3f2a0250cc160e (patch) | |
tree | fed46b5f4c2ed3a050bb1a7ad7c6d0a3ea844d55 /lib/querypath/src/QueryPath/Query.php | |
parent | c5bcf8f74fb80b7e163663845b0d6e35cabface3 (diff) |
* Motor Sport Magazine feed provider
Diffstat (limited to 'lib/querypath/src/QueryPath/Query.php')
-rw-r--r-- | lib/querypath/src/QueryPath/Query.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/querypath/src/QueryPath/Query.php b/lib/querypath/src/QueryPath/Query.php new file mode 100644 index 0000000..81b5cae --- /dev/null +++ b/lib/querypath/src/QueryPath/Query.php @@ -0,0 +1,12 @@ +<?php +namespace QueryPath; +interface Query { + public function __construct($document = NULL, $selector = NULL, $options = NULL); + public function find($selector); + public function top($selector = NULL); + public function next($selector = NULL); + public function prev($selector = NULL); + public function siblings($selector = NULL); + public function parent($selector = NULL); + public function children($selector = NULL); +} |