public function isEmpty($value) { if ($this->isEmpty !== null) { return call_user_func($this->isEmpty, $value); } else { return $value === null || $value === [] || $value === ''; } }