@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | return $lname; |
| 103 | 103 | } |
| 104 | 104 | // already a full URI |
| 105 | - return $this->getUriSpace() . $lname; |
|
| 105 | + return $this->getUriSpace().$lname; |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | /** |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | foreach ($conceptscheme->allLiterals($prop, null) as $val) { |
| 174 | 174 | $prop = (substr($prop, 0, 5) == 'dc11:') ? str_replace('dc11:', 'dc:', $prop) : $prop; |
| 175 | 175 | if ($val->getValue() instanceof DateTime) { |
| 176 | - $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang) . ' ' . Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang); |
|
| 176 | + $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang).' '.Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang); |
|
| 177 | 177 | } |
| 178 | 178 | $ret[$prop][] = $val; |
| 179 | 179 | } |
@@ -294,7 +294,7 @@ discard block |
||
| 294 | 294 | } |
| 295 | 295 | // don't know how to parse |
| 296 | 296 | $rev = $parts[2]; |
| 297 | - $datestr = $parts[3] . ' ' . $parts[4]; |
|
| 297 | + $datestr = $parts[3].' '.$parts[4]; |
|
| 298 | 298 | |
| 299 | 299 | return "$datestr (r$rev)"; |
| 300 | 300 | } |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | * @param string $array the uri of the concept array class, eg. isothes:ThesaurusArray |
| 306 | 306 | * @param string $group the uri of the concept group class, eg. isothes:ConceptGroup |
| 307 | 307 | */ |
| 308 | - public function getStatistics($lang = '', $array=null, $group=null) |
|
| 308 | + public function getStatistics($lang = '', $array = null, $group = null) |
|
| 309 | 309 | { |
| 310 | 310 | $sparql = $this->getSparql(); |
| 311 | 311 | // find the number of concepts |
@@ -626,7 +626,7 @@ discard block |
||
| 626 | 626 | return $this->getSparql()->queryChangeList($prop, $clang, $offset, $limit); |
| 627 | 627 | } |
| 628 | 628 | |
| 629 | - public function getTitle($lang=null) { |
|
| 629 | + public function getTitle($lang = null) { |
|
| 630 | 630 | return $this->config->getTitle($lang); |
| 631 | 631 | } |
| 632 | 632 | |