Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SimpleXMLElement has root namespace #2254

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions module/VuFind/src/VuFind/ILS/Driver/Aleph.php
Expand Up @@ -646,7 +646,7 @@ protected function getDefaultAddressMappings()
* @param array $params Parameters
* @param bool $auth Include authentication?
*
* @return SimpleXMLElement
* @return \SimpleXMLElement
*/
protected function doXRequest($op, $params, $auth = false)
{
Expand Down Expand Up @@ -686,7 +686,7 @@ protected function doXRequest($op, $params, $auth = false)
* @param string $method HTTP method
* @param string $body HTTP body
*
* @return SimpleXMLElement
* @return \SimpleXMLElement
*/
protected function doRestDLFRequest(
$path_elements,
Expand Down Expand Up @@ -755,7 +755,7 @@ protected function appendQueryString($url, $params)
* @param string $method HTTP method
* @param string $body HTTP body (null for none)
*
* @return SimpleXMLElement
* @return \SimpleXMLElement
*/
protected function doHTTPRequest($url, $method = 'GET', $body = null)
{
Expand Down