validator = $validator; $this->subject = $subject; $this->errors = $errors; } /** * @inheritDoc */ public function getValidator() { return $this->validator; } /** * @inheritDoc */ public function getValidationErrors() { return $this->errors; } /** * @inheritDoc */ public function getValidationSubject() { return $this->subject; } }