We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a957ccf commit a78b6a4Copy full SHA for a78b6a4
src/Peachpie.Runtime/PhpCallback.cs
@@ -24,7 +24,9 @@ public partial interface IPhpCallable
24
/// <summary>
25
/// Invokes the object with given arguments.
26
/// </summary>
27
+#pragma warning disable CS0618 // Type or member is obsolete
28
PhpValue Invoke(Context ctx, params ReadOnlySpan<PhpValue> arguments) => Invoke(ctx, arguments.ToArray());
29
+#pragma warning restore CS0618 // Type or member is obsolete
30
31
32
0 commit comments