Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
9875c7eb
Commit
9875c7eb
authored
Feb 23, 2011
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- improved phpdoc for Solarium_Client
- fixed phpdoc 'licence' typo - added phpdoc title setting
parent
b3d90177
Changes
36
Hide whitespace changes
Inline
Side-by-side
Showing
36 changed files
with
106 additions
and
56 deletions
+106
-56
build.xml
build.xml
+1
-1
library/Solarium/Client.php
library/Solarium/Client.php
+63
-19
library/Solarium/Client/Adapter.php
library/Solarium/Client/Adapter.php
+1
-1
library/Solarium/Client/Adapter/Stream.php
library/Solarium/Client/Adapter/Stream.php
+1
-1
library/Solarium/Client/Request.php
library/Solarium/Client/Request.php
+1
-1
library/Solarium/Client/Request/Select.php
library/Solarium/Client/Request/Select.php
+1
-1
library/Solarium/Client/Request/Update.php
library/Solarium/Client/Request/Update.php
+1
-1
library/Solarium/Client/Response.php
library/Solarium/Client/Response.php
+1
-1
library/Solarium/Client/Response/Ping.php
library/Solarium/Client/Response/Ping.php
+1
-1
library/Solarium/Client/Response/Select.php
library/Solarium/Client/Response/Select.php
+1
-1
library/Solarium/Client/Response/Update.php
library/Solarium/Client/Response/Update.php
+1
-1
library/Solarium/Configurable.php
library/Solarium/Configurable.php
+9
-3
library/Solarium/Document/ReadOnly.php
library/Solarium/Document/ReadOnly.php
+1
-1
library/Solarium/Document/ReadWrite.php
library/Solarium/Document/ReadWrite.php
+1
-1
library/Solarium/Exception.php
library/Solarium/Exception.php
+1
-1
library/Solarium/Query.php
library/Solarium/Query.php
+1
-1
library/Solarium/Query/Ping.php
library/Solarium/Query/Ping.php
+1
-1
library/Solarium/Query/Select.php
library/Solarium/Query/Select.php
+1
-1
library/Solarium/Query/Select/Facet.php
library/Solarium/Query/Select/Facet.php
+1
-1
library/Solarium/Query/Select/Facet/Field.php
library/Solarium/Query/Select/Facet/Field.php
+1
-1
library/Solarium/Query/Select/Facet/Query.php
library/Solarium/Query/Select/Facet/Query.php
+1
-1
library/Solarium/Query/Select/FilterQuery.php
library/Solarium/Query/Select/FilterQuery.php
+1
-1
library/Solarium/Query/Update.php
library/Solarium/Query/Update.php
+1
-1
library/Solarium/Query/Update/Command.php
library/Solarium/Query/Update/Command.php
+1
-1
library/Solarium/Query/Update/Command/Add.php
library/Solarium/Query/Update/Command/Add.php
+1
-1
library/Solarium/Query/Update/Command/Commit.php
library/Solarium/Query/Update/Command/Commit.php
+1
-1
library/Solarium/Query/Update/Command/Delete.php
library/Solarium/Query/Update/Command/Delete.php
+1
-1
library/Solarium/Query/Update/Command/Optimize.php
library/Solarium/Query/Update/Command/Optimize.php
+1
-1
library/Solarium/Query/Update/Command/Rollback.php
library/Solarium/Query/Update/Command/Rollback.php
+1
-1
library/Solarium/Result/Ping.php
library/Solarium/Result/Ping.php
+1
-1
library/Solarium/Result/Query.php
library/Solarium/Result/Query.php
+1
-1
library/Solarium/Result/Select.php
library/Solarium/Result/Select.php
+1
-1
library/Solarium/Result/Select/Facet/Field.php
library/Solarium/Result/Select/Facet/Field.php
+1
-1
library/Solarium/Result/Select/Facet/Query.php
library/Solarium/Result/Select/Facet/Query.php
+1
-1
library/Solarium/Result/Update.php
library/Solarium/Result/Update.php
+1
-1
library/Solarium/Version.php
library/Solarium/Version.php
+1
-1
No files found.
build.xml
View file @
9875c7eb
...
@@ -61,7 +61,7 @@ you could also write the switches here)
...
@@ -61,7 +61,7 @@ you could also write the switches here)
<!-- Generate API documentation -->
<!-- Generate API documentation -->
<target
name=
"phpdoc"
>
<target
name=
"phpdoc"
>
<exec
executable=
"phpdoc"
>
<exec
executable=
"phpdoc"
>
<arg
line=
"-s on -ue on -d library -t build/api -o HTML:frames:DOM/earthli"
/>
<arg
line=
"-s on -ue on -d library -t build/api -o HTML:frames:DOM/earthli
-ti 'Solarium API Documentation'
"
/>
</exec>
</exec>
</target>
</target>
...
...
library/Solarium/Client.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
@@ -49,6 +49,8 @@
...
@@ -49,6 +49,8 @@
* $result = $client->select($query);
* $result = $client->select($query);
* </code>
* </code>
*
*
* @package Solarium
* @subpackage Client
*/
*/
class
Solarium_Client
extends
Solarium_Configurable
class
Solarium_Client
extends
Solarium_Configurable
{
{
...
@@ -81,10 +83,10 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -81,10 +83,10 @@ class Solarium_Client extends Solarium_Configurable
protected
$_adapter
;
protected
$_adapter
;
/**
/**
* Init options array. Some options might need some extra checks or setup
* {@inheritdoc}
* work.
*
*
* @return void
* In this case the path needs to be cleaned of trailing slashes.
* @see setPath()
*/
*/
protected
function
_init
()
protected
function
_init
()
{
{
...
@@ -98,11 +100,11 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -98,11 +100,11 @@ class Solarium_Client extends Solarium_Configurable
}
}
/**
/**
*
Set an option
*
{@inheritdoc}
*
*
*
@param string $name
*
If any option of this client is changed after the adapter has been
*
@param mixed $value
*
instantiated the change is propagated to the adapter. This allows for
*
@return void
*
switching the client to another core for a second query, for instance.
*/
*/
protected
function
_setOption
(
$name
,
$value
)
protected
function
_setOption
(
$name
,
$value
)
{
{
...
@@ -118,7 +120,7 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -118,7 +120,7 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Set host option
* Set host option
*
*
* @param string $host
* @param string $host
This can be a hostname or an IP address
* @return Solarium_Client Provides fluent interface
* @return Solarium_Client Provides fluent interface
*/
*/
public
function
setHost
(
$host
)
public
function
setHost
(
$host
)
...
@@ -139,7 +141,7 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -139,7 +141,7 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Set port option
* Set port option
*
*
* @param int $port
* @param int $port
Common values are 80, 8080 and 8983
* @return Solarium_Client Provides fluent interface
* @return Solarium_Client Provides fluent interface
*/
*/
public
function
setPort
(
$port
)
public
function
setPort
(
$port
)
...
@@ -149,6 +151,7 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -149,6 +151,7 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Get port option
* Get port option
*
* @return int
* @return int
*/
*/
public
function
getPort
()
public
function
getPort
()
...
@@ -159,12 +162,13 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -159,12 +162,13 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Set path option
* Set path option
*
*
* If the path has a trailing slash it will be removed.
*
* @param string $path
* @param string $path
* @return Solarium_Client Provides fluent interface
* @return Solarium_Client Provides fluent interface
*/
*/
public
function
setPath
(
$path
)
public
function
setPath
(
$path
)
{
{
// remove trailing slashes
if
(
substr
(
$path
,
-
1
)
==
'/'
)
$path
=
substr
(
$path
,
0
,
-
1
);
if
(
substr
(
$path
,
-
1
)
==
'/'
)
$path
=
substr
(
$path
,
0
,
-
1
);
return
$this
->
_setOption
(
'path'
,
$path
);
return
$this
->
_setOption
(
'path'
,
$path
);
...
@@ -204,29 +208,57 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -204,29 +208,57 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Set the adapter
* Set the adapter
*
*
* The adapter has to be a class that extends Solarium_Client_Adapter.
* If a string is passed it is assumed to be the classname and it will be
* instantiated on first use. This requires the availability of the class
* through autoloading or a manual require before calling this method.
*
* Any existing adapter instance will be removed by this method, this way an
* instance of the new adapter type will be created upon the next usage of
* the adapter (lazy-loading)
*
* @param string|Solarium_Client_Adapter $adapter
* @param string|Solarium_Client_Adapter $adapter
* @return Solarium_Client Provides fluent interface
* @return Solarium_Client Provides fluent interface
*/
*/
public
function
setAdapter
(
$adapter
)
public
function
setAdapter
(
$adapter
)
{
{
if
(
is_string
(
$adapter
))
{
$this
->
_adapter
=
null
;
$adapter
=
new
$adapter
;
}
return
$this
->
_setOption
(
'adapter'
,
$adapter
);
}
$adapter
->
setOptions
(
$this
->
_options
);
$this
->
_adapter
=
$adapter
;
/**
return
$this
;
* Create an adapter instance
*
* The 'adapter' entry in {@link $_options} will be used to create an
* adapter instance. This entry can be the default value of
* {@link $_options}, a value passed to the constructor or a value set by
* using {@link setAdapter()}
*
* This method is used for lazy-loading the adapter upon first use in
* {@link getAdapter()}
*
* @return void
*/
protected
function
_createAdapter
()
{
$adapterClass
=
$this
->
getOption
(
'adapter'
);
$this
->
_adapter
=
new
$adapterClass
;
$this
->
_adapter
->
setOptions
(
$this
->
_options
);
}
}
/**
/**
* Get the adapter instance
* Get the adapter instance
*
*
* If {@see $_adapter} doesn't hold an instance a new one will be created by
* calling {@see _createAdapter()}
*
* @return Solarium_Client_Adapter
* @return Solarium_Client_Adapter
*/
*/
public
function
getAdapter
()
public
function
getAdapter
()
{
{
if
(
null
===
$this
->
_adapter
)
{
if
(
null
===
$this
->
_adapter
)
{
$this
->
setAdapter
(
$this
->
_options
[
'adapter'
]
);
$this
->
_createAdapter
(
);
}
}
return
$this
->
_adapter
;
return
$this
->
_adapter
;
...
@@ -235,6 +267,10 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -235,6 +267,10 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Execute a ping query
* Execute a ping query
*
*
* This is a convenience method that forwards the query to the adapter and
* returns the adapter result, thus allowing for an easy to use and clean
* API.
*
* @param Solarium_Query_Ping $query
* @param Solarium_Query_Ping $query
* @return Solarium_Result_Ping
* @return Solarium_Result_Ping
*/
*/
...
@@ -246,6 +282,10 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -246,6 +282,10 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Execute an update query
* Execute an update query
*
*
* This is a convenience method that forwards the query to the adapter and
* returns the adapter result, thus allowing for an easy to use and clean
* API.
*
* @param Solarium_Query_Update $query
* @param Solarium_Query_Update $query
* @return Solarium_Result_Select
* @return Solarium_Result_Select
*/
*/
...
@@ -257,6 +297,10 @@ class Solarium_Client extends Solarium_Configurable
...
@@ -257,6 +297,10 @@ class Solarium_Client extends Solarium_Configurable
/**
/**
* Execute a select query
* Execute a select query
*
*
* This is a convenience method that forwards the query to the adapter and
* returns the adapter result, thus allowing for an easy to use and clean
* API.
*
* @param Solarium_Query_Select $query
* @param Solarium_Query_Select $query
* @return Solarium_Result_Select
* @return Solarium_Result_Select
*/
*/
...
...
library/Solarium/Client/Adapter.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Adapter/Stream.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Request.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Request/Select.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Request/Update.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Response.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Response/Ping.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Response/Select.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Client/Response/Update.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Client
* @subpackage Client
...
...
library/Solarium/Configurable.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
*/
*/
...
@@ -78,8 +78,14 @@ class Solarium_Configurable
...
@@ -78,8 +78,14 @@ class Solarium_Configurable
}
}
/**
/**
* Init method for extra checks or setup work. Can be implemented in
* Initialization hook
* extending classes.
*
* Can be used by classes for special behaviour. For instance some options
* have extra setup work in their 'set' method that also need to be called
* when the option is passed as a constructor argument.
*
* This hook is called by the constructor after saving the constructor
* arguments in {@link $_options}
*
*
* @return void
* @return void
*/
*/
...
...
library/Solarium/Document/ReadOnly.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Document
* @subpackage Document
...
...
library/Solarium/Document/ReadWrite.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Document
* @subpackage Document
...
...
library/Solarium/Exception.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
*/
*/
...
...
library/Solarium/Query.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Ping.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Select.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Select/Facet.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Select/Facet/Field.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Select/Facet/Query.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Select/FilterQuery.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update/Command.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update/Command/Add.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update/Command/Commit.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update/Command/Delete.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update/Command/Optimize.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Query/Update/Command/Rollback.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Query
* @subpackage Query
...
...
library/Solarium/Result/Ping.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Result
* @subpackage Result
...
...
library/Solarium/Result/Query.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Result
* @subpackage Result
...
...
library/Solarium/Result/Select.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Result
* @subpackage Result
...
...
library/Solarium/Result/Select/Facet/Field.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Result
* @subpackage Result
...
...
library/Solarium/Result/Select/Facet/Query.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Result
* @subpackage Result
...
...
library/Solarium/Result/Update.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
* @subpackage Result
* @subpackage Result
...
...
library/Solarium/Version.php
View file @
9875c7eb
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
* policies, either expressed or implied, of the copyright holder.
* policies, either expressed or implied, of the copyright holder.
*
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licen
c
e http://github.com/basdenooijer/solarium/raw/master/COPYING
* @licen
s
e http://github.com/basdenooijer/solarium/raw/master/COPYING
*
*
* @package Solarium
* @package Solarium
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment