@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * Get the localname of a concept in the vocabulary. If the URI is not |
132 | 132 | * in the URI space of this vocabulary, return the full URI. |
133 | 133 | * |
134 | - * @param $uri string full URI of concept |
|
134 | + * @param string $uri string full URI of concept |
|
135 | 135 | * @return string local name of concept, or original full URI if the local name cannot be determined |
136 | 136 | */ |
137 | 137 | public function getLocalName($uri) |
@@ -303,6 +303,8 @@ discard block |
||
303 | 303 | |
304 | 304 | /** |
305 | 305 | * Counts the statistics of the vocabulary. |
306 | + * @param string $array |
|
307 | + * @param string $group |
|
306 | 308 | * @return array of the concept/group counts |
307 | 309 | */ |
308 | 310 | public function getStatistics($lang = '', $array=null, $group=null) |
@@ -342,6 +344,7 @@ discard block |
||
342 | 344 | /** |
343 | 345 | * Gets the child relations of a concept and whether these children have more children. |
344 | 346 | * @param string $uri |
347 | + * @param string $lang |
|
345 | 348 | */ |
346 | 349 | public function getConceptChildren($uri, $lang) |
347 | 350 | { |
@@ -450,6 +453,8 @@ discard block |
||
450 | 453 | /** |
451 | 454 | * Lists the concepts available in the concept group. |
452 | 455 | * @param $clname |
456 | + * @param string $glname |
|
457 | + * @param string $clang |
|
453 | 458 | * @return array |
454 | 459 | */ |
455 | 460 | public function listConceptGroupContents($glname, $clang) |
@@ -476,7 +481,7 @@ discard block |
||
476 | 481 | /** |
477 | 482 | * Returns the letters of the alphabet which have been used in this vocabulary. |
478 | 483 | * The returned letters may also include specials such as '0-9' (digits) and '!*' (special characters). |
479 | - * @param $clang content language |
|
484 | + * @param string $clang content language |
|
480 | 485 | * @return array array of letters |
481 | 486 | */ |
482 | 487 | public function getAlphabet($clang) |
@@ -511,6 +516,7 @@ discard block |
||
511 | 516 | * Also the special tokens '0-9' (digits), '!*' (special characters) and '*' |
512 | 517 | * (everything) are supported. |
513 | 518 | * @param $letter letter (or special token) to search for |
519 | + * @param string $clang |
|
514 | 520 | */ |
515 | 521 | public function searchConceptsAlphabetical($letter, $limit = null, $offset = null, $clang = null) |
516 | 522 | { |
@@ -626,6 +632,9 @@ discard block |
||
626 | 632 | return $this->getSparql()->queryChangeList($prop, $clang, $offset, $limit); |
627 | 633 | } |
628 | 634 | |
635 | + /** |
|
636 | + * @param string $lang |
|
637 | + */ |
|
629 | 638 | public function getTitle($lang=null) { |
630 | 639 | return $this->config->getTitle($lang); |
631 | 640 | } |
@@ -235,6 +235,11 @@ discard block |
||
235 | 235 | )); |
236 | 236 | } |
237 | 237 | |
238 | + /** |
|
239 | + * @param string $fromName |
|
240 | + * @param string|null $fromEmail |
|
241 | + * @param string $sender |
|
242 | + */ |
|
238 | 243 | private function createFeedbackHeaders($fromName, $fromEmail, $toMail, $sender) |
239 | 244 | { |
240 | 245 | $headers = "MIME-Version: 1.0" . "\r\n"; |
@@ -256,6 +261,7 @@ discard block |
||
256 | 261 | * @param string $fromName senders own name. |
257 | 262 | * @param string $fromEmail senders email address. |
258 | 263 | * @param string $fromVocab which vocabulary is the feedback related to. |
264 | + * @param string $toMail |
|
259 | 265 | */ |
260 | 266 | public function sendFeedback($request, $message, $fromName = null, $fromEmail = null, $fromVocab = null, $toMail = null) |
261 | 267 | { |
@@ -569,6 +575,7 @@ discard block |
||
569 | 575 | |
570 | 576 | /** |
571 | 577 | * Invokes a very generic errorpage. |
578 | + * @param Request $request |
|
572 | 579 | */ |
573 | 580 | public function invokeGenericErrorPage($request, $message = null) |
574 | 581 | { |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Return the logging facility |
66 | - * @return object logger |
|
66 | + * @return Monolog\Logger logger |
|
67 | 67 | */ |
68 | 68 | public function getLogger() { |
69 | 69 | return $this->logger; |
@@ -546,7 +546,7 @@ discard block |
||
546 | 546 | * Get the label for a resource, preferring 1. the given language 2. configured languages 3. any language. |
547 | 547 | * @param EasyRdf\Resource $res resource whose label to return |
548 | 548 | * @param string $lang preferred language |
549 | - * @return EasyRdf\Literal label as an EasyRdf\Literal object, or null if not found |
|
549 | + * @return string label as an EasyRdf\Literal object, or null if not found |
|
550 | 550 | */ |
551 | 551 | public function getResourceLabel($res, $lang) |
552 | 552 | { |