@@ -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 |
@@ -99,17 +99,14 @@ |
||
99 | 99 | return strcoll(strtolower($a->getLabel()), strtolower($b->getLabel())); |
100 | 100 | } |
101 | 101 | return 1; |
102 | - } |
|
103 | - else if ($bnot == null) { |
|
102 | + } else if ($bnot == null) { |
|
104 | 103 | return -1; |
105 | - } |
|
106 | - else { |
|
104 | + } else { |
|
107 | 105 | // assume that notations are unique |
108 | 106 | return strnatcasecmp($anot, $bnot); |
109 | 107 | } |
110 | 108 | }); |
111 | - } |
|
112 | - else { |
|
109 | + } else { |
|
113 | 110 | uasort($this->values, function($a, $b) { |
114 | 111 | // assume that labels are unique |
115 | 112 | return strcoll(strtolower($a->getLabel()), strtolower($b->getLabel())); |