public function ContentEntityNullStorage::hasData in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php \Drupal\Core\Entity\ContentEntityNullStorage::hasData()
Determines if the storage contains any data.
Return value
bool TRUE if the storage contains data, FALSE if not.
Overrides ContentEntityStorageBase::hasData
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityNullStorage.php, line 143 - Contains \Drupal\Core\Entity\ContentEntityNullStorage.
Class
- ContentEntityNullStorage
- Defines a null entity storage.
Namespace
Drupal\Core\EntityCode
public function hasData() {
return FALSE;
}