Determines if the value is valid for lookup.
The only values considered invalid are: NULL, FALSE, [] and "".
string $value: The value to test.
bool Return true if the value is valid.
protected function isValid($value) { return !in_array($value, [ NULL, FALSE, [], "", ], TRUE); }