87 foreach ( $this->constraints as $constraint ) {
88 $result = $constraint->checkConstraint();
89 if ( $result !== IEditConstraint::CONSTRAINT_PASSED ) {
92 'Checked {name}, got result: {result}',
94 'name' => $this->getConstraintName( $constraint ),
99 $this->failedConstraint = $constraint;
104 $this->logger->debug(
105 'Checked {name}, got result: {result}',
107 'name' => $this->getConstraintName( $constraint ),
121 $fullClassName = explode(
'\\', get_class( $constraint ) );