Completed
Pull Request — master (#947)
by
unknown
01:43
created
model/ConceptProperty.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -99,17 +99,14 @@
 block discarded – undo
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()));
Please login to merge, or discard this patch.