function BaseFieldDefinition::setStorageRequired
Sets whether the field storage is required.
Parameters
bool $required: Whether the field storage is required.
Return value
static The object itself for chaining.
File
- 
              core/
lib/ Drupal/ Core/ Field/ BaseFieldDefinition.php, line 808  
Class
- BaseFieldDefinition
 - A class for defining entity fields.
 
Namespace
Drupal\Core\FieldCode
public function setStorageRequired($required) {
  $this->definition['storage_required'] = $required;
  return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.