Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
betrayful
/
wp
/
wp-content
/
plugins
/
woocommerce
/
lib
/
packages
/
GraphQL
/
Error
:
ProvidesExtensions.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Vendor\GraphQL\Error; /** * Implementing HasExtensions allows this error to provide additional data to clients. */ interface ProvidesExtensions { /** * Data to include within the "extensions" key of the formatted error. * * @return array<string, mixed>|null */ public function getExtensions(): ?array; }