X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fcriteria%2Fclass_Criteria.php;h=d2cb532fe074fa4e939f0efbe2986627c5e0f9f6;hp=0a1264ccc9f8d33f2c39a52f3b95eeb6394980fd;hb=ccc1db45751c976264513b8c51884e39f8214b12;hpb=9879bd477f9a6ea055ac4803e6a2ea9ae56f7071 diff --git a/inc/classes/interfaces/criteria/class_Criteria.php b/inc/classes/interfaces/criteria/class_Criteria.php index 0a1264cc..d2cb532f 100644 --- a/inc/classes/interfaces/criteria/class_Criteria.php +++ b/inc/classes/interfaces/criteria/class_Criteria.php @@ -126,27 +126,27 @@ interface Criteria extends FrameworkInterface { function addConfiguredCriteria ($criteriaKey, $configEntry, $criteriaType = 'default'); /** - * Get criteria element or null if not found + * Get criteria element or FALSE if not found * * @param $criteriaKey The requested criteria key * @param $criteriaType Type of this criteria, can be one of 'default' (default), 'choice' or 'exclude' - * @return $value Whether the value of the critera or null + * @return $value Whether the value of the critera or FALSE */ function getCriteriaElemnent ($criteriaKey, $criteriaType = 'default'); /** - * Get criteria element or null if not found for 'choice' type + * Get criteria element or FALSE if not found for 'choice' type * * @param $criteriaKey The requested criteria key - * @return $value Whether the value of the critera or null + * @return $value Whether the value of the critera or FALSE */ function getCriteriaChoiceElemnent ($criteriaKey); /** - * Get criteria element or null if not found for 'exclude' type + * Get criteria element or FALSE if not found for 'exclude' type * * @param $criteriaKey The requested criteria key - * @return $value Whether the value of the critera or null + * @return $value Whether the value of the critera or FALSE */ function getCriteriaExcludeElemnent ($criteriaKey);