Completed
Push — master ( 00fcb4...f21d74 )
by Henri
04:06
created
model/ConceptPropertyValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     {
25 25
         $label = is_string($this->getLabel()) ? $this->getLabel() : $this->getLabel()->getValue();
26 26
         if ($this->vocab->getConfig()->sortByNotation()) {
27
-            $label = $this->getNotation() . $label;
27
+            $label = $this->getNotation().$label;
28 28
         }
29 29
 
30 30
         return $label;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
     public function getReifiedPropertyValues() {
121 121
         $ret = array();
122 122
         $props = $this->resource->properties();
123
-        foreach($props as $prop) {
123
+        foreach ($props as $prop) {
124 124
             if ($prop !== 'rdf:value') { // shown elsewhere
125 125
                 $ret[$prop] = $this->resource->get($prop);
126 126
             }
Please login to merge, or discard this patch.