/** * Checks if value is set * * @param mixed $value * @return bool */ public static function isValueNotEmpty($value) { if (is_array($value)) { return ArrayHelper::isArrayNotEmpty($value); } if (is_object($value)) { // todo return true; } return strlen($value); }