@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | * @param string $prop property type eg. 'rdf:type'. |
| 23 | 23 | * @param string $label |
| 24 | 24 | */ |
| 25 | - public function __construct($prop, $label, $super=null, $sort_by_notation=false) |
|
| 25 | + public function __construct($prop, $label, $super = null, $sort_by_notation = false) |
|
| 26 | 26 | { |
| 27 | 27 | $this->prop = $prop; |
| 28 | 28 | $this->label = $label; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | */ |
| 62 | 62 | public function getDescription() |
| 63 | 63 | { |
| 64 | - $helpprop = $this->prop . "_help"; |
|
| 64 | + $helpprop = $this->prop."_help"; |
|
| 65 | 65 | |
| 66 | 66 | return gettext($helpprop); // can't use string constant, it'd be picked up by xgettext |
| 67 | 67 | } |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | |
| 81 | 81 | public function addValue($value) |
| 82 | 82 | { |
| 83 | - $this->values[ltrim($value->getNotation() . ' ') . $value->getLabel() . rtrim(' ' . $value->getUri())] = $value; |
|
| 83 | + $this->values[ltrim($value->getNotation().' ').$value->getLabel().rtrim(' '.$value->getUri())] = $value; |
|
| 84 | 84 | $this->is_sorted = false; |
| 85 | 85 | } |
| 86 | 86 | |