From 1d1f1013ccd51d90efc2c6a3c2578605ef5f3dd8 Mon Sep 17 00:00:00 2001 From: Oliver Hader <oliver@typo3.org> Date: Thu, 12 Jul 2018 11:58:10 +0200 Subject: [PATCH] [TASK] Fix CGL issues Resolves: #..... Releases: master, 8.7 Change-Id: Iace5c4d064182c628e9d3b03876c73e19dd725cd Reviewed-on: https://review.typo3.org/57565 Reviewed-by: Oliver Hader <oliver.hader@typo3.org> Tested-by: Oliver Hader <oliver.hader@typo3.org> --- .../form/Classes/Domain/Configuration/ConfigurationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php b/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php index af34d68afef8..20ea290fd6f1 100644 --- a/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php +++ b/typo3/sysext/form/Classes/Domain/Configuration/ConfigurationService.php @@ -494,7 +494,7 @@ class ConfigurationService implements SingletonInterface $propertyPathsFromHook = $hookObj->addAdditionalPropertyPaths($validationDto); if (!is_array($propertyPathsFromHook)) { $message = 'Return value of "%s->addAdditionalPropertyPaths() must be type "array"'; - throw new PropertyException(sprintf($message, $className), 1528633966); + throw new PropertyException(sprintf($message, $className), 1528633965); } $configuration = $this->addAdditionalPropertyPathsFromHook( $className, -- GitLab