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

Commit de094ec

Browse files
committed
Fix namespace mentioning v8=>V8 [skip ci]
1 parent 25f6c8f commit de094ec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

stubs/src/IndexedPropertyHandlerConfiguration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class IndexedPropertyHandlerConfiguration
2424
* @param callable $query The callback to invoke to check if an object has a property.
2525
* @param callable $deleter The callback to invoke when deleting a property.
2626
* @param callable $enumerator The callback to invoke to enumerate all the indexed properties of an object.
27-
* @param int $flags One of \v8\PropertyHandlerFlags constants
27+
* @param int $flags One of \V8\PropertyHandlerFlags constants
2828
*/
2929
public function __construct(
3030
callable $getter,

stubs/src/NamedPropertyHandlerConfiguration.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class NamedPropertyHandlerConfiguration
3939
* Callback signature is (PropertyCallbackInfo $args).
4040
* ReturnValue from $args->GetReturnValue() accepts ArrayObject only
4141
*
42-
* @param int $flags One of \v8\PropertyHandlerFlags constants
42+
* @param int $flags One of \V8\PropertyHandlerFlags constants
4343
*/
4444
public function __construct(
4545
callable $getter,

stubs/src/ObjectTemplate.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ public function setAccessor(
8585
* invoked instead of accessing the property directly on the JavaScript
8686
* object.
8787
*
88-
* See \v8\NamedPropertyHandlerConfiguration constructor argument description for details
88+
* See \V8\NamedPropertyHandlerConfiguration constructor argument description for details
8989
*
90-
* @param \v8\NamedPropertyHandlerConfiguration The NamedPropertyHandlerConfiguration that defines the callbacks to invoke when accessing a property.
90+
* @param \V8\NamedPropertyHandlerConfiguration The NamedPropertyHandlerConfiguration that defines the callbacks to invoke when accessing a property.
9191
*/
9292
public function setHandlerForNamedProperty(NamedPropertyHandlerConfiguration $configuration)
9393
{
@@ -100,7 +100,7 @@ public function setHandlerForNamedProperty(NamedPropertyHandlerConfiguration $co
100100
* this object template, the provided callback is invoked instead of
101101
* accessing the property directly on the JavaScript object.
102102
*
103-
* See \v8\IndexedPropertyHandlerConfiguration constructor argument description for details
103+
* See \V8\IndexedPropertyHandlerConfiguration constructor argument description for details
104104
*
105105
* @param \V8\IndexedPropertyHandlerConfiguration $configuration The IndexedPropertyHandlerConfiguration that defines the callbacks to invoke when accessing a property.
106106
*/

0 commit comments

Comments
 (0)