Skip to content
This repository was archived by the owner on Mar 29, 2024. It is now read-only.

Commit d6e6ce4

Browse files
committed
Remove non-working and non-supporting $attributes argument from V8\StringValue ctor in stubs [skip ci]
1 parent 5774a3b commit d6e6ce4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

stubs/src/StringValue.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ class StringValue extends NameValue
2323
{
2424
const kMaxLength = (1 << 28) - 16;
2525

26-
public function __construct(Isolate $isolate, $data = '', $attributes = null)
26+
/**
27+
* @param Isolate $isolate
28+
* @param string $data
29+
*/
30+
public function __construct(Isolate $isolate, $data = '')
2731
{
2832
parent::__construct($isolate);
2933
}

0 commit comments

Comments
 (0)