diff --git a/library/Solarium/Core/Plugin/Plugin.php b/library/Solarium/Core/Plugin/Plugin.php new file mode 100644 index 000000000..a1c18d0a8 --- /dev/null +++ b/library/Solarium/Core/Plugin/Plugin.php @@ -0,0 +1,44 @@ + + * @license http://github.com/basdenooijer/solarium/raw/master/COPYING + * + * @link http://www.solarium-project.org/ + */ + +namespace Solarium\Core\Plugin; + +/** + * This class is for backwards compatibility, will be removed in 4.x releases + */ +abstract class Plugin extends AbstractPlugin +{ +} diff --git a/library/Solarium/Core/Query/Query.php b/library/Solarium/Core/Query/Query.php new file mode 100644 index 000000000..5d01db771 --- /dev/null +++ b/library/Solarium/Core/Query/Query.php @@ -0,0 +1,48 @@ + + * @license http://github.com/basdenooijer/solarium/raw/master/COPYING + * + * @link http://www.solarium-project.org/ + */ + +/** + * @namespace + */ + +namespace Solarium\Core\Query; + +/** + * This class is for backwards compatibility, will be removed in 4.x releases + */ +abstract class Query extends AbstractQuery +{ +} diff --git a/library/Solarium/Core/Query/RequestBuilder.php b/library/Solarium/Core/Query/RequestBuilder.php new file mode 100644 index 000000000..8c21a48fd --- /dev/null +++ b/library/Solarium/Core/Query/RequestBuilder.php @@ -0,0 +1,48 @@ + + * @license http://github.com/basdenooijer/solarium/raw/master/COPYING + * + * @link http://www.solarium-project.org/ + */ + +/** + * @namespace + */ + +namespace Solarium\Core\Query; + +/** + * This class is for backwards compatibility, will be removed in 4.x releases + */ +abstract class RequestBuilder extends AbstractRequestBuilder +{ +} diff --git a/library/Solarium/Core/Query/ResponseParser.php b/library/Solarium/Core/Query/ResponseParser.php new file mode 100644 index 000000000..9948248cc --- /dev/null +++ b/library/Solarium/Core/Query/ResponseParser.php @@ -0,0 +1,48 @@ + + * @license http://github.com/basdenooijer/solarium/raw/master/COPYING + * + * @link http://www.solarium-project.org/ + */ + +/** + * @namespace + */ + +namespace Solarium\Core\Query; + +/** + * This class is for backwards compatibility, will be removed in 4.x releases + */ +abstract class ResponseParser extends AbstractResponseParser +{ +} diff --git a/library/Solarium/QueryType/Analysis/Query/Query.php b/library/Solarium/QueryType/Analysis/Query/Query.php new file mode 100644 index 000000000..622489285 --- /dev/null +++ b/library/Solarium/QueryType/Analysis/Query/Query.php @@ -0,0 +1,48 @@ + + * @license http://github.com/basdenooijer/solarium/raw/master/COPYING + * + * @link http://www.solarium-project.org/ + */ + +/** + * @namespace + */ + +namespace Solarium\QueryType\Analysis\Query; + +/** + * This class is for backwards compatibility, will be removed in 4.x releases + */ +abstract class Query extends AbstractQuery +{ +}