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
* Rename extension loaded calls
* Rename C-extension name
* Use right name
* Use pecl url
* Prefix with ext-
This is usually the default name/definition in composer.json
* Bogus
Copy file name to clipboardExpand all lines: _register.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@
10
10
return;
11
11
}
12
12
13
-
if (extension_loaded('otel_instrumentation') === false) {
14
-
trigger_error('The otel_instrumentation extension must be loaded in order to autoload the OpenTelemetry Laravel auto-instrumentation', E_USER_WARNING);
13
+
if (extension_loaded('opentelemetry') === false) {
14
+
trigger_error('The opentelemetry extension must be loaded in order to autoload the OpenTelemetry Laravel auto-instrumentation', E_USER_WARNING);
0 commit comments