public function VatNumber::isEmpty in VAT Number 8
Determines whether the data structure is empty.
Return value
bool TRUE if the data structure is empty, FALSE otherwise.
Overrides Map::isEmpty
File
- src/
Plugin/ Field/ FieldType/ VatNumber.php, line 40
Class
- VatNumber
- Provides a field type of vatNumber.
Namespace
Drupal\vat_number\Plugin\Field\FieldTypeCode
public function isEmpty() {
$value = $this
->get('value')
->getValue();
return $value === NULL || $value === '';
}