You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2024. It is now read-only.
if (Arr::get($tag_attributes, 'callback') === ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION) {
83
-
thrownewInvalidConfigurationException('Property "callback" ("data-callback") must be different from "' . ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION . '"');
83
+
thrownewInvalidConfigurationException(
84
+
'Property "callback" ("data-callback") must be different from "'
85
+
. ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION
86
+
. '"'
87
+
);
84
88
}
85
89
86
90
if (Arr::get($tag_attributes, 'expired-callback') === ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION) {
87
-
thrownewInvalidConfigurationException('Property "expired-callback" ("data-expired-callback") must be different from "' . ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION . '"');
91
+
thrownewInvalidConfigurationException(
92
+
'Property "expired-callback" ("data-expired-callback") must be different from "'
93
+
. ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION
94
+
. '"'
95
+
);
88
96
}
89
97
90
98
if (Arr::get($tag_attributes, 'error-callback') === ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION) {
91
-
thrownewInvalidConfigurationException('Property "error-callback" ("data-error-callback") must be different from "' . ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION . '"');
99
+
thrownewInvalidConfigurationException(
100
+
'Property "error-callback" ("data-error-callback") must be different from "'
101
+
. ReCaptchaBuilder::DEFAULT_ONLOAD_JS_FUNCTION
102
+
. '"'
103
+
);
92
104
}
93
105
94
106
return$tag_attributes;
@@ -102,7 +114,9 @@ public function getOnLoadCallback(): string
0 commit comments