You are here

public function FieldStorageConfig::getConstraints in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/field/src/Entity/FieldStorageConfig.php \Drupal\field\Entity\FieldStorageConfig::getConstraints()

Returns an array of validation constraints.

See \Drupal\Core\TypedData\DataDefinitionInterface::getConstraints() for details.

Return value

array[] An array of validation constraint definitions, keyed by constraint name. Each constraint definition can be used for instantiating \Symfony\Component\Validator\Constraint objects.

Overrides FieldStorageDefinitionInterface::getConstraints

See also

\Symfony\Component\Validator\Constraint

File

core/modules/field/src/Entity/FieldStorageConfig.php, line 733

Class

FieldStorageConfig
Defines the Field storage configuration entity.

Namespace

Drupal\field\Entity

Code

public function getConstraints() {
  return [];
}