Skip to content

Commit cfb97e9

Browse files
committed
Update docs
1 parent 5179f5f commit cfb97e9

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/Client.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public function __construct($url, $options = null, $httpClient = null)
7575
* @param string $cql The CQL query
7676
* @param int $start Start value in result set (optional)
7777
* @param int $count Number of records to request (optional)
78+
* @param array $extraParams Extra GET parameters
7879
* @return string
7980
*/
8081
public function urlTo($cql, $start = 1, $count = 10, $extraParams = array())
@@ -131,6 +132,7 @@ public function getHttpOptions()
131132
* @param string $cql
132133
* @param int $start Start value in result set (optional)
133134
* @param int $count Number of records to request (optional)
135+
* @param array $extraParams Extra GET parameters
134136
* @return SearchRetrieveResponse
135137
*/
136138
public function search($cql, $start = 1, $count = 10, $extraParams = array()) {
@@ -149,6 +151,7 @@ public function search($cql, $start = 1, $count = 10, $extraParams = array()) {
149151
*
150152
* @param string $cql
151153
* @param int $count Number of records to request per request
154+
* @param array $extraParams Extra GET parameters
152155
* @param mixed $httpClient A http client
153156
* @return Records
154157
*/

src/Records.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class Records implements \Iterator {
3838
* @param string $cql Query
3939
* @param Client $client SRU client reference (optional)
4040
* @param int $count Number of records to request per request
41+
* @param array $extraParams Extra GET parameters
4142
* @param mixed $httpClient A http client
4243
*/
4344
public function __construct($cql, Client $client, $count = 10, $extraParams = array(), $httpClient = null) {

0 commit comments

Comments
 (0)