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
'Please provide the children as an array of InlineNodeInterface instances instead of a string.',
39
+
'Passing the content of %s as string is deprecated, pass an array of InlineNodeInterface instances instead. New signature: string $type, string $targetReference, array $children',
40
+
static::class,
37
41
);
38
-
$children = [newPlainTextInlineNode($value)];
42
+
43
+
if (func_num_args() < 4) {
44
+
// compat with (string $type, string $targetReference, string $value) signature
0 commit comments