Completed
Push — master ( a2b3dc...439a57 )
by Henri
14s
created
model/Vocabulary.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -598,6 +598,9 @@
 block discarded – undo
598 598
       return $bydate;
599 599
     }
600 600
 
601
+    /**
602
+     * @param string $lang
603
+     */
601 604
     public function getTitle($lang=null) {
602 605
       return $this->config->getTitle($lang);
603 606
     }
Please login to merge, or discard this patch.
model/VocabularyConfig.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
 
319 319
     /**
320 320
      * Returns a boolean value set in the vocabularies.ttl config.
321
-     * @return array array of concept class URIs (can be empty)
321
+     * @return string[] array of concept class URIs (can be empty)
322 322
      */
323 323
     public function getIndexClasses()
324 324
     {
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 
328 328
     /**
329 329
      * Returns skosmos:externalProperty values set in the vocabularies.ttl config.
330
-     * @return array array of external property URIs (can be empty)
330
+     * @return string[] array of external property URIs (can be empty)
331 331
      */
332 332
     public function getExtProperties()
333 333
     {
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
      * Additionally, the chosen content language is inserted with the highest priority
474 474
      * and the vocab default language is inserted with the lowest priority.
475 475
      * @param string $clang
476
-     * @return array of language code strings
476
+     * @return string[] of language code strings
477 477
      */
478 478
     public function getLanguageOrder($clang)
479 479
     {
Please login to merge, or discard this patch.