|
@@ -98,7 +98,7 @@ discard block |
|
|
block discarded – undo |
|
98
|
98
|
foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['google_tag_manager']['variableProviders'] as $class) { |
|
99
|
99
|
if (!class_exists($class)) { |
|
100
|
100
|
$message = 'Registered hook class "' . $class . '" '; |
|
101
|
|
- $message.= 'for Google Tag Manager variable provider does not exist.'; |
|
|
101
|
+ $message .= 'for Google Tag Manager variable provider does not exist.'; |
|
102
|
102
|
throw new \RuntimeException( |
|
103
|
103
|
$message, |
|
104
|
104
|
1459503274 |
|
@@ -108,7 +108,7 @@ discard block |
|
|
block discarded – undo |
|
108
|
108
|
$variableProvider = $this->objectManager->get($class); |
|
109
|
109
|
if (!$variableProvider instanceof VariableProviderInterface) { |
|
110
|
110
|
$message = 'Hook "' . $class . '" for Google Tag Manager '; |
|
111
|
|
- $message.= 'variable provider does not implement VariableProviderInterface.'; |
|
|
111
|
+ $message .= 'variable provider does not implement VariableProviderInterface.'; |
|
112
|
112
|
throw new \RuntimeException( |
|
113
|
113
|
$message, |
|
114
|
114
|
1459503275 |
Please login to merge, or discard this patch.