Skip to content
Snippets Groups Projects
Commit 5682c2df authored by Taddeus Kroes's avatar Taddeus Kroes
Browse files

Removed unused pQuery extension interface.

parent 96416a80
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
/** /**
* @todo Documentation * @todo Documentation
*/ */
class pQueryArray extends pQuery implements pQueryExtension { class pQueryArray extends pQuery {
static $accepts = array('array'); static $accepts = array('array');
/** /**
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* @todo Documentation * @todo Documentation
* @property string $files * @property string $files
*/ */
class pQueryCache extends pQuery implements pQueryExtension { class pQueryCache extends pQuery {
const CACHE_FOLDER = 'cache/'; const CACHE_FOLDER = 'cache/';
const ADMINISTRATION_FILE = 'administration.php'; const ADMINISTRATION_FILE = 'administration.php';
......
...@@ -11,7 +11,7 @@ __p::load_utils('CssParser'); ...@@ -11,7 +11,7 @@ __p::load_utils('CssParser');
/** /**
* @todo Documentation * @todo Documentation
*/ */
class pQueryCss extends pQueryCache implements pQueryExtension { class pQueryCss extends pQueryCache {
static $accepts = array('array' => 'add_extensions', 'string' => 'make_array'); static $accepts = array('array' => 'add_extensions', 'string' => 'make_array');
var $minify_config = array( var $minify_config = array(
......
...@@ -11,7 +11,7 @@ __p::load_utils('jshrink'); ...@@ -11,7 +11,7 @@ __p::load_utils('jshrink');
/** /**
* @todo Documentation * @todo Documentation
*/ */
class pQueryJs extends pQueryCache implements pQueryExtension { class pQueryJs extends pQueryCache {
static $accepts = array('array' => 'add_extensions', 'string' => 'make_array'); static $accepts = array('array' => 'add_extensions', 'string' => 'make_array');
/** /**
......
...@@ -301,16 +301,6 @@ class pQueryException extends Exception { ...@@ -301,16 +301,6 @@ class pQueryException extends Exception {
} }
/**
* Interface used for extending the jQuery class.
*/
interface pQueryExtension {
/**
*
*/
}
/** /**
* Shortcut constructor for {@link pQuery}. * Shortcut constructor for {@link pQuery}.
* *
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* @todo Documentation * @todo Documentation
* @property $query The query that is being evaluated. * @property $query The query that is being evaluated.
*/ */
class pQuerySql extends pQuery implements pQueryExtension { class pQuerySql extends pQuery {
static $accepts = array('string' => 'parse_query', 'resource'); static $accepts = array('string' => 'parse_query', 'resource');
/** /**
......
...@@ -11,7 +11,7 @@ __p::load_utils('block'); ...@@ -11,7 +11,7 @@ __p::load_utils('block');
* @todo Documentation * @todo Documentation
* @property string $content The template's content. * @property string $content The template's content.
*/ */
class pQueryTemplate extends pQuery implements pQueryExtension { class pQueryTemplate extends pQuery {
const DEFAULT_EXTENSION = 'tpl'; const DEFAULT_EXTENSION = 'tpl';
static $accepts = array('string' => 'open_template_file'); static $accepts = array('string' => 'open_template_file');
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* @todo Documentation * @todo Documentation
* @property string $content The template's content. * @property string $content The template's content.
*/ */
class pQueryUrl extends pQuery implements pQueryExtension { class pQueryUrl extends pQuery {
static $accepts = array('string' => 'parse_url'); static $accepts = array('string' => 'parse_url');
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment