APIv4 - add descriptions to sql functions
[civicrm-core.git] / Civi / Api4 / Query / SqlFunctionABS.php
index 015906c4def6c5ce1ce3ed622af4c310f5137ce0..7e8b6f1aab26e603e57603d07ecd3c9cadd0f157 100644 (file)
@@ -31,7 +31,14 @@ class SqlFunctionABS extends SqlFunction {
    * @return string
    */
   public static function getTitle(): string {
-    return ts('Absolute');
+    return ts('Absolute value');
+  }
+
+  /**
+   * @return string
+   */
+  public static function getDescription(): string {
+    return ts('The positive value of a number.');
   }
 
 }