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 36e95ba commit d5ffac5Copy full SHA for d5ffac5
src/V8Function.php
@@ -0,0 +1,15 @@
1
+<?php
2
+
3
+/**
4
+ * JavaScript function companion (for functions passed from JavaScript to PHP).
5
+ */
6
+final class V8Function
7
+{
8
+ /**
9
+ * V8Function must not be constructed directly.
10
+ *
11
+ * @throws V8JsException
12
13
+ public function __construct()
14
+ {}
15
+}
src/V8Generator.php
@@ -0,0 +1,51 @@
+ * JavaScript generator function companion (for generators passed from JavaScript to PHP).
+final class V8Generator implements Iterator
+ * V8Generator must not be constructed directly.
16
17
+ * {@inheritdoc}
18
19
+ public function current()
20
+ { }
21
22
23
24
25
+ public function next()
26
27
28
29
+ * Return the key of the current element
30
+ * @return false
31
32
+ public function key()
33
34
35
36
37
38
+ public function valid()
39
40
41
42
+ * JavaScript generators cannot be rewound.
43
44
+ * This methods throws an exception if called after generator has been started.
45
46
47
48
49
+ public function rewind()
50
51
src/V8Object.php
+ * JavaScript object companion (for objects passed from JavaScript to PHP).
+final class V8Object
+ * V8Object must not be constructed directly.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments