Skip to content

Commit 1b1b4f3

Browse files
committed
Merge branch 'master' of github.com:scriptotek/php-sru-client
2 parents d824e4b + 85e74dc commit 1b1b4f3

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[![Build Status](https://img.shields.io/travis/scriptotek/php-sru-client.svg)](https://travis-ci.org/scriptotek/php-sru-client)
22
[![Coverage Status](https://img.shields.io/coveralls/scriptotek/php-sru-client.svg)](https://coveralls.io/r/scriptotek/php-sru-client?branch=master)
3+
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/scriptotek/php-sru-client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/scriptotek/php-sru-client/?branch=master)
34

45
## php-sru-client
56

src/ExplainResponse.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php namespace Scriptotek\Sru;
22

3-
use Danmichaelo\QuiteSimpleXMLElement\QuiteSimpleXMLElement;
4-
53
/**
64
* Explain response
75
*/

src/InvalidResponseException.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
class InvalidResponseException extends \Exception{
44

5+
/**
6+
* @param string $message
7+
*/
58
public function __construct($message) {
69
parent::__construct($message);
710
}

src/ResponseInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ interface ResponseInterface {
1010
*
1111
* @param string $text Raw XML response
1212
* @param Client $client SRU client reference (optional)
13+
* @return void
1314
*/
1415
public function __construct($text, &$client = null);
1516

src/SearchRetrieveResponse.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php namespace Scriptotek\Sru;
22

3-
use Danmichaelo\QuiteSimpleXMLElement\QuiteSimpleXMLElement;
4-
53
/**
64
* SearchRetrieve response, containing a list of records or some error
75
*/

0 commit comments

Comments
 (0)