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
61378029
Commit
61378029
authored
Feb 23, 2011
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- improving phpdoc
parent
c16f0b31
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
57 additions
and
2 deletions
+57
-2
build.xml
build.xml
+1
-1
library/Solarium/Client.php
library/Solarium/Client.php
+2
-1
library/Solarium/Client/Adapter.php
library/Solarium/Client/Adapter.php
+6
-0
library/Solarium/Client/Adapter/Stream.php
library/Solarium/Client/Adapter/Stream.php
+6
-0
library/Solarium/Client/Request.php
library/Solarium/Client/Request.php
+6
-0
library/Solarium/Client/Request/Select.php
library/Solarium/Client/Request/Select.php
+6
-0
library/Solarium/Client/Request/Update.php
library/Solarium/Client/Request/Update.php
+6
-0
library/Solarium/Client/Response.php
library/Solarium/Client/Response.php
+6
-0
library/Solarium/Client/Response/Ping.php
library/Solarium/Client/Response/Ping.php
+6
-0
library/Solarium/Client/Response/Select.php
library/Solarium/Client/Response/Select.php
+6
-0
library/Solarium/Client/Response/Update.php
library/Solarium/Client/Response/Update.php
+6
-0
No files found.
build.xml
View file @
61378029
...
...
@@ -61,7 +61,7 @@ you could also write the switches here)
<!-- Generate API documentation -->
<target
name=
"phpdoc"
>
<exec
executable=
"phpdoc"
>
<arg
line=
"-d library -t build/api
"
/>
<arg
line=
"-d library -t build/api
-s -t 'Solarium documentation' -ue on"
/>
</exec>
</target>
...
...
library/Solarium/Client.php
View file @
61378029
...
...
@@ -73,7 +73,8 @@ class Solarium_Client extends Solarium_Configurable
* Adapter instance
*
* The adapter is lazy-loading, it will be instantiated on first use by
* {@see getAdapter} based on the 'adapter' entry in {@see $_options}
* {@link getAdapter()} based on the 'adapter' entry in {@link $_options}.
* This options can be set using {@link setAdapter()}
*
* @var Solarium_Client_Adapter
*/
...
...
library/Solarium/Client/Adapter.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Adapter/Stream.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Request.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Request/Select.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Request/Update.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Response.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Response/Ping.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Response/Select.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
library/Solarium/Client/Response/Update.php
View file @
61378029
...
...
@@ -27,6 +27,12 @@
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*
* @copyright Copyright 2011 Bas de Nooijer <solarium@raspberry.nl>
* @licence http://github.com/basdenooijer/solarium/raw/master/COPYING
*
* @package Solarium
* @subpackage Client
*/
/**
...
...
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