SearchKit - Change @searchable annotation from boolean to option list
[civicrm-core.git] / Civi / Api4 / Utils / ReflectionUtils.php
index 102b1bc40e15f44afc20a95048983dd05983ee95..c48f921d0c2db6dc9101c952ce22db70b01ac155 100644 (file)
@@ -95,9 +95,6 @@ class ReflectionUtils {
         elseif ($key == 'throws' || $key == 'see') {
           $info[$key][] = implode(' ', $words);
         }
-        elseif ($key == 'searchable') {
-          $info[$key] = strtolower($words[0]) !== 'false';
-        }
         elseif ($key == 'param' && $words) {
           $type = $words[0][0] !== '$' ? explode('|', array_shift($words)) : NULL;
           $param = rtrim(array_shift($words), '-:()/');