diff --git a/library/Solarium/Core/Plugin/Plugin.php b/library/Solarium/Core/Plugin/Plugin.php new file mode 100644 index 000000000..3ff7e9cde --- /dev/null +++ b/library/Solarium/Core/Plugin/Plugin.php @@ -0,0 +1,46 @@ + + * @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 in favor of AbstractPlugin + * + * @deprecated + */ +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..007086ef5 --- /dev/null +++ b/library/Solarium/Core/Query/Query.php @@ -0,0 +1,50 @@ + + * @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 in favor of AbstractQuery + * + * @deprecated + */ +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..671be27dc --- /dev/null +++ b/library/Solarium/Core/Query/RequestBuilder.php @@ -0,0 +1,50 @@ + + * @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 in favor of AbstractRequestBuilder + * + * @deprecated + */ +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..2ee30612b --- /dev/null +++ b/library/Solarium/Core/Query/ResponseParser.php @@ -0,0 +1,50 @@ + + * @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 in favor of AbstractResponseParser + * + * @deprecated + */ +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..2fe911562 --- /dev/null +++ b/library/Solarium/QueryType/Analysis/Query/Query.php @@ -0,0 +1,50 @@ + + * @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 in favor of AbstractQuery + * + * @deprecated + */ +abstract class Query extends AbstractQuery +{ +}