Browse Source

Minor - add missing get/set

Julio Montoya 6 years ago
parent
commit
c42fedf957
1 changed files with 20 additions and 0 deletions
  1. 20 0
      src/Chamilo/CoreBundle/Entity/ExtraFieldValues.php

+ 20 - 0
src/Chamilo/CoreBundle/Entity/ExtraFieldValues.php

@@ -190,4 +190,24 @@ class ExtraFieldValues extends BaseAttributeValue
     {
         return $this->id;
     }
+
+    /**
+     * @return string
+     */
+    public function getValue()
+    {
+        return $this->value;
+    }
+
+    /**
+     * @param string $value
+     *
+     * @return ExtraFieldValues
+     */
+    public function setValue($value)
+    {
+        $this->value = $value;
+
+        return $this;
+    }
 }