Skip to content
Snippets Groups Projects
Commit f95841ef authored by Demian Katz's avatar Demian Katz
Browse files

Style fixes.

parent 7df48220
No related merge requests found
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
* @link http://vufind.org/wiki/vufind2:developer_manual Wiki * @link http://vufind.org/wiki/vufind2:developer_manual Wiki
*/ */
namespace VuFind\Content; namespace VuFind\Content;
use VuFindCode\ISBN;
/** /**
* Abstract base for content loader plug-ins. * Abstract base for content loader plug-ins.
...@@ -69,7 +70,7 @@ abstract class AbstractBase implements \VuFindHttp\HttpServiceAwareInterface, ...@@ -69,7 +70,7 @@ abstract class AbstractBase implements \VuFindHttp\HttpServiceAwareInterface,
* Attempt to get an ISBN-10; revert to ISBN-13 only when ISBN-10 representation * Attempt to get an ISBN-10; revert to ISBN-13 only when ISBN-10 representation
* is impossible. * is impossible.
* *
* @param \VuFindCode\ISBN $isbnObj ISBN object to convert * @param ISBN $isbnObj ISBN object to convert
* *
* @return string * @return string
*/ */
...@@ -110,10 +111,10 @@ abstract class AbstractBase implements \VuFindHttp\HttpServiceAwareInterface, ...@@ -110,10 +111,10 @@ abstract class AbstractBase implements \VuFindHttp\HttpServiceAwareInterface,
/** /**
* Load results for a particular API key and ISBN. * Load results for a particular API key and ISBN.
* *
* @param string $key API key * @param string $key API key
* @param \VuFindCode\ISBN $isbnObj ISBN object * @param ISBN $isbnObj ISBN object
* *
* @return array * @return array
*/ */
abstract public function loadByIsbn($key, \VuFindCode\ISBN $isbnObj); abstract public function loadByIsbn($key, ISBN $isbnObj);
} }
...@@ -49,7 +49,7 @@ class Syndetics extends \VuFind\Content\AbstractSyndetics ...@@ -49,7 +49,7 @@ class Syndetics extends \VuFind\Content\AbstractSyndetics
* for more information. * for more information.
* Configuration: Sources are processed in order - refer to $sourceList. * Configuration: Sources are processed in order - refer to $sourceList.
* *
* @param string $key API key * @param string $key API key
* @param \VuFindCode\ISBN $isbnObj ISBN object * @param \VuFindCode\ISBN $isbnObj ISBN object
* *
* @throws \Exception * @throws \Exception
......
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