Commit 9875c7eb authored by Bas de Nooijer's avatar Bas de Nooijer

- improved phpdoc for Solarium_Client

- fixed phpdoc 'licence' typo
- added phpdoc title setting
parent b3d90177
...@@ -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>
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license 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
*/ */
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Client * @subpackage Client
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license 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
*/ */
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Document * @subpackage Document
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Document * @subpackage Document
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
*/ */
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Query * @subpackage Query
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
* @subpackage Result * @subpackage Result
......
...@@ -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>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING * @license http://github.com/basdenooijer/solarium/raw/master/COPYING
* *
* @package Solarium * @package Solarium
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment