@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | return $lname; |
105 | 105 | } |
106 | 106 | // already a full URI |
107 | - return $this->getUriSpace() . $lname; |
|
107 | + return $this->getUriSpace().$lname; |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | $result = $sparql->queryConceptScheme($defaultcs); |
167 | 167 | } catch (EasyRdf\Http\Exception | EasyRdf\Exception | Throwable $e) { |
168 | 168 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
169 | - error_log('Caught exception: ' . $e->getMessage()); |
|
169 | + error_log('Caught exception: '.$e->getMessage()); |
|
170 | 170 | } |
171 | 171 | return null; |
172 | 172 | } |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | foreach ($conceptscheme->allLiterals($prop, null) as $val) { |
200 | 200 | $prop = (substr($prop, 0, 5) == 'dc11:') ? str_replace('dc11:', 'dc:', $prop) : $prop; |
201 | 201 | if ($val->getValue() instanceof DateTime) { |
202 | - $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang) . ' ' . Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang); |
|
202 | + $val = Punic\Calendar::formatDate($val->getValue(), 'full', $lang).' '.Punic\Calendar::format($val->getValue(), 'HH:mm:ss', $lang); |
|
203 | 203 | } |
204 | 204 | $ret[$prop][] = $val; |
205 | 205 | } |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | $conceptSchemes = $this->getSparql()->queryConceptSchemes($lang); |
257 | 257 | } catch (EasyRdf\Http\Exception | EasyRdf\Exception | Throwable $e) { |
258 | 258 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
259 | - error_log('Caught exception: ' . $e->getMessage()); |
|
259 | + error_log('Caught exception: '.$e->getMessage()); |
|
260 | 260 | } |
261 | 261 | } |
262 | 262 | return $conceptSchemes; |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | } |
328 | 328 | // don't know how to parse |
329 | 329 | $rev = $parts[2]; |
330 | - $datestr = $parts[3] . ' ' . $parts[4]; |
|
330 | + $datestr = $parts[3].' '.$parts[4]; |
|
331 | 331 | |
332 | 332 | return "$datestr (r$rev)"; |
333 | 333 | } |
@@ -457,7 +457,7 @@ discard block |
||
457 | 457 | $conceptInfo = $sparql->queryConceptInfo([$uri], $this->config->getArrayClassURI(), array($this), $clang); |
458 | 458 | } catch (EasyRdf\Http\Exception | EasyRdf\Exception | Throwable $e) { |
459 | 459 | if ($this->model->getConfig()->getLogCaughtExceptions()) { |
460 | - error_log('Caught exception: ' . $e->getMessage()); |
|
460 | + error_log('Caught exception: '.$e->getMessage()); |
|
461 | 461 | } |
462 | 462 | } |
463 | 463 | if (!$conceptInfo) { |