@@ -10,6 +10,9 @@ |
||
| 10 | 10 | */ |
| 11 | 11 | class VocabularyCategory extends DataObject |
| 12 | 12 | { |
| 13 | + /** |
|
| 14 | + * @param Model $model |
|
| 15 | + */ |
|
| 13 | 16 | public function __construct($model, $resource) |
| 14 | 17 | { |
| 15 | 18 | if (!($model instanceof Model)) { |
@@ -55,6 +55,7 @@ |
||
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * Steps back, restoring the previous character or statement read() to the input buffer. |
| 58 | + * @param string $chars |
|
| 58 | 59 | */ |
| 59 | 60 | protected function unread($chars) |
| 60 | 61 | { |
@@ -3,6 +3,9 @@ |
||
| 3 | 3 | class LabelSkosXL extends DataObject |
| 4 | 4 | { |
| 5 | 5 | |
| 6 | + /** |
|
| 7 | + * @param Model $model |
|
| 8 | + */ |
|
| 6 | 9 | public function __construct($model, $resource) |
| 7 | 10 | { |
| 8 | 11 | parent::__construct($model, $resource); |
@@ -10,6 +10,11 @@ |
||
| 10 | 10 | /** property type */ |
| 11 | 11 | private $type; |
| 12 | 12 | |
| 13 | + /** |
|
| 14 | + * @param Model $model |
|
| 15 | + * @param Vocabulary $vocab |
|
| 16 | + * @param Resource $resource |
|
| 17 | + */ |
|
| 13 | 18 | public function __construct($model, $vocab, $resource, $literal, $prop) |
| 14 | 19 | { |
| 15 | 20 | parent::__construct($model, $vocab, $resource); |
@@ -74,6 +74,7 @@ discard block |
||
| 74 | 74 | * @param Vocabulary $vocab |
| 75 | 75 | * @param EasyRdf\Resource $resource |
| 76 | 76 | * @param EasyRdf\Graph $graph |
| 77 | + * @param string|null $clang |
|
| 77 | 78 | */ |
| 78 | 79 | public function __construct($model, $vocab, $resource, $graph, $clang) |
| 79 | 80 | { |
@@ -738,6 +739,7 @@ discard block |
||
| 738 | 739 | |
| 739 | 740 | /** |
| 740 | 741 | * Gets the groups/arrays the concept belongs to. |
| 742 | + * @param boolean $includeArrays |
|
| 741 | 743 | */ |
| 742 | 744 | private function getCollections($includeArrays) { |
| 743 | 745 | $groups = array(); |
@@ -169,6 +169,8 @@ |
||
| 169 | 169 | |
| 170 | 170 | /** |
| 171 | 171 | * Return the mapping as a JSKOS-compatible array. |
| 172 | + * @param string $lang |
|
| 173 | + * @param string $hrefLink |
|
| 172 | 174 | * @return array |
| 173 | 175 | */ |
| 174 | 176 | public function asJskos($queryExVocabs = true, $lang = null, $hrefLink = null) |
@@ -266,6 +266,7 @@ discard block |
||
| 266 | 266 | |
| 267 | 267 | /** |
| 268 | 268 | * Returns skosmos:marcSourcecode value set in config.ttl. |
| 269 | + * @param string $lang |
|
| 269 | 270 | * @return string marcsource name |
| 270 | 271 | */ |
| 271 | 272 | public function getMarcSourceCode($lang = null) |
@@ -275,7 +276,7 @@ discard block |
||
| 275 | 276 | |
| 276 | 277 | /** |
| 277 | 278 | * Returns a boolean value set in the config.ttl config. |
| 278 | - * @return array array of concept class URIs (can be empty) |
|
| 279 | + * @return string[] array of concept class URIs (can be empty) |
|
| 279 | 280 | */ |
| 280 | 281 | public function getIndexClasses() |
| 281 | 282 | { |
@@ -284,7 +285,7 @@ discard block |
||
| 284 | 285 | |
| 285 | 286 | /** |
| 286 | 287 | * Returns skosmos:externalProperty values set in the config.ttl config. |
| 287 | - * @return array array of external property URIs (can be empty) |
|
| 288 | + * @return string[] array of external property URIs (can be empty) |
|
| 288 | 289 | */ |
| 289 | 290 | public function getExtProperties() |
| 290 | 291 | { |
@@ -410,6 +411,7 @@ discard block |
||
| 410 | 411 | |
| 411 | 412 | /** |
| 412 | 413 | * Returns the vocabulary dc:type value(s) with their labels and uris, if set in the vocabulary configuration. |
| 414 | + * @param string $lang |
|
| 413 | 415 | * @return array of objects or an empty array |
| 414 | 416 | */ |
| 415 | 417 | public function getTypes($lang = null) |
@@ -23,6 +23,7 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | 25 | * Initializes the Model object. |
| 26 | + * @param Model $model |
|
| 26 | 27 | */ |
| 27 | 28 | public function __construct($model) |
| 28 | 29 | { |
@@ -290,7 +291,7 @@ discard block |
||
| 290 | 291 | * Sends HTTP headers. Simply calls PHP built-in header function. But being |
| 291 | 292 | * a function here, it can easily be tested/mocked. |
| 292 | 293 | * |
| 293 | - * @param $header string header to be sent |
|
| 294 | + * @param string $header string header to be sent |
|
| 294 | 295 | */ |
| 295 | 296 | protected function sendHeader($header) |
| 296 | 297 | { |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | |
| 153 | 153 | /** |
| 154 | 154 | * Returns the graph instance |
| 155 | - * @return object EasyRDF graph instance. |
|
| 155 | + * @return string|null EasyRDF graph instance. |
|
| 156 | 156 | */ |
| 157 | 157 | public function getGraph() { |
| 158 | 158 | return $this->graph; |
@@ -287,6 +287,7 @@ discard block |
||
| 287 | 287 | /** |
| 288 | 288 | * Counts the number of concepts in a easyRDF graph with a specific language. |
| 289 | 289 | * @param array $langs Languages to query for |
| 290 | + * @param string[] $classes |
|
| 290 | 291 | * @return Array containing count of concepts for each language and property. |
| 291 | 292 | */ |
| 292 | 293 | public function countLangConcepts($langs, $classes = null) { |
@@ -471,7 +472,7 @@ discard block |
||
| 471 | 472 | * Returns information (as a graph) for one or more concept URIs |
| 472 | 473 | * @param mixed $uris concept URI (string) or array of URIs |
| 473 | 474 | * @param string|null $arrayClass the URI for thesaurus array class, or null if not used |
| 474 | - * @param \Vocabulary[]|null $vocabs vocabularies to target |
|
| 475 | + * @param Vocabulary[] $vocabs vocabularies to target |
|
| 475 | 476 | * @return \EasyRdf\Graph |
| 476 | 477 | */ |
| 477 | 478 | public function queryConceptInfoGraph($uris, $arrayClass = null, $vocabs = array()) { |
@@ -487,7 +488,7 @@ discard block |
||
| 487 | 488 | |
| 488 | 489 | /** |
| 489 | 490 | * Returns information (as an array of Concept objects) for one or more concept URIs |
| 490 | - * @param mixed $uris concept URI (string) or array of URIs |
|
| 491 | + * @param string $uris concept URI (string) or array of URIs |
|
| 491 | 492 | * @param string|null $arrayClass the URI for thesaurus array class, or null if not used |
| 492 | 493 | * @param \Vocabulary[] $vocabs vocabularies to target |
| 493 | 494 | * @param string|null $clang content language |
@@ -705,7 +706,7 @@ discard block |
||
| 705 | 706 | |
| 706 | 707 | /** |
| 707 | 708 | * Generate a VALUES clause for limiting the targeted graphs. |
| 708 | - * @param Vocabulary[]|null $vocabs array of Vocabulary objects to target |
|
| 709 | + * @param Vocabulary[] $vocabs array of Vocabulary objects to target |
|
| 709 | 710 | * @return string VALUES clause, or "" if not necessary to limit |
| 710 | 711 | */ |
| 711 | 712 | protected function formatValuesGraph($vocabs) { |
@@ -887,6 +888,7 @@ discard block |
||
| 887 | 888 | * @param string $searchLang language code used for matching labels (null means any language) |
| 888 | 889 | * @param string[] $props properties to target e.g. array('skos:prefLabel','skos:altLabel') |
| 889 | 890 | * @param boolean $unique restrict results to unique concepts (default: false) |
| 891 | + * @param string $filterGraph |
|
| 890 | 892 | * @return string sparql query |
| 891 | 893 | */ |
| 892 | 894 | protected function generateConceptSearchQueryInner($term, $lang, $searchLang, $props, $unique, $filterGraph) |
@@ -1161,6 +1163,7 @@ discard block |
||
| 1161 | 1163 | /** |
| 1162 | 1164 | * Generates sparql query clauses used for creating the alphabetical index. |
| 1163 | 1165 | * @param string $letter the letter (or special class) to search for |
| 1166 | + * @param string $lang |
|
| 1164 | 1167 | * @return array of sparql query clause strings |
| 1165 | 1168 | */ |
| 1166 | 1169 | private function formatFilterConditions($letter, $lang) { |
@@ -1328,6 +1331,7 @@ discard block |
||
| 1328 | 1331 | /** |
| 1329 | 1332 | * Query for the first characters (letter or otherwise) of the labels in the particular language. |
| 1330 | 1333 | * @param string $lang language |
| 1334 | + * @param string[] $classes |
|
| 1331 | 1335 | * @return array array of characters |
| 1332 | 1336 | */ |
| 1333 | 1337 | public function queryFirstCharacters($lang, $classes = null) { |
@@ -1650,7 +1654,7 @@ discard block |
||
| 1650 | 1654 | /** |
| 1651 | 1655 | * Query a single transitive property of a concept. |
| 1652 | 1656 | * @param string $uri |
| 1653 | - * @param array $props the property/properties. |
|
| 1657 | + * @param string[] $props the property/properties. |
|
| 1654 | 1658 | * @param string $lang |
| 1655 | 1659 | * @param string $fallbacklang language to use if label is not available in the preferred language |
| 1656 | 1660 | * @param integer $limit |