Update to Drupal 8.1.2. For more information, see https://www.drupal.org/project/drupal/releases/8.1.2

This commit is contained in:
Pantheon Automation 2016-06-02 15:56:09 -07:00 committed by Greg Anderson
parent 9eae24d844
commit 28556d630e
1322 changed files with 6699 additions and 2064 deletions

View file

@ -136,4 +136,5 @@ class ConstraintManager extends DefaultPluginManager {
}
return $definitions;
}
}

View file

@ -103,4 +103,5 @@ class DrupalTranslator implements TranslatorInterface {
$locale = isset($locale) ? $locale : $this->locale;
return array('langcode' => $locale);
}
}

View file

@ -18,4 +18,5 @@ class AllowedValuesConstraint extends Choice {
public $minMessage = 'You must select at least %limit choice.|You must select at least %limit choices.';
public $maxMessage = 'You must select at most %limit choice.|You must select at most %limit choices.';
}

View file

@ -57,4 +57,5 @@ class ComplexDataConstraint extends Constraint {
public function getRequiredOptions() {
return array('properties');
}
}

View file

@ -27,4 +27,5 @@ class CountConstraint extends Count {
public function validatedBy() {
return '\Symfony\Component\Validator\Constraints\CountValidator';
}
}

View file

@ -24,4 +24,5 @@ class EmailConstraint extends Email {
public function validatedBy() {
return '\Symfony\Component\Validator\Constraints\EmailValidator';
}
}

View file

@ -29,4 +29,5 @@ class LengthConstraint extends Length {
public function validatedBy() {
return '\Symfony\Component\Validator\Constraints\LengthValidator';
}
}

View file

@ -15,4 +15,5 @@ use Symfony\Component\Validator\Constraint;
class PrimitiveTypeConstraint extends Constraint {
public $message = 'This value should be of the correct primitive type.';
}

View file

@ -77,4 +77,5 @@ class PrimitiveTypeConstraintValidator extends ConstraintValidator {
));
}
}
}

View file

@ -28,4 +28,5 @@ class RangeConstraint extends Range {
public function validatedBy() {
return '\Symfony\Component\Validator\Constraints\RangeValidator';
}
}

View file

@ -24,4 +24,5 @@ class RegexConstraint extends Regex {
public function validatedBy() {
return '\Symfony\Component\Validator\Constraints\RegexValidator';
}
}

View file

@ -40,4 +40,5 @@ class UniqueFieldValueValidator extends ConstraintValidator {
]);
}
}
}