Preview: SyntaxError.php
Size: 427 B
//home/nshryvcy/radiantskinclinics.org/wp-content/plugins/woocommerce/lib/packages/GraphQL/Error/SyntaxError.php
<?php declare(strict_types=1);
namespace Automattic\WooCommerce\Vendor\GraphQL\Error;
use Automattic\WooCommerce\Vendor\GraphQL\Language\Source;
class SyntaxError extends Error
{
public function __construct(Source $source, int $position, string $description)
{
parent::__construct(
"Syntax Error: {$description}",
null,
$source,
[$position]
);
}
}
Directory Contents
Dirs: 0 × Files: 11