if want to do this following:
$filteredValues = array_filter($rawValues, function($rawValue) {
return $this->validateValue($rawValue);
});
validateValue
is a private method in the same class.
How can i use $this context in array_filter in this way?