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

Commit 16307fd

Browse files
committed
Add missed UndefindValue::Value() method to stubs [skip ci]
1 parent 4ce2194 commit 16307fd

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Diff for: stubs/src/PrimitiveValue.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
*/
2222
abstract class PrimitiveValue extends Value
2323
{
24-
abstract function Value();
24+
abstract public function Value();
2525
}

Diff for: stubs/src/UndefinedValue.php

+7
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,11 @@ class UndefinedValue extends PrimitiveValue
2323
public function __construct(Isolate $isolate)
2424
{
2525
}
26+
27+
/**
28+
* @return null
29+
*/
30+
public function Value()
31+
{
32+
}
2633
}

0 commit comments

Comments
 (0)