Edge.php
<?php
declare(strict_types=1);
namespace Automattic\WooCommerce\Api\Pagination;
/**
* Represents an edge in a Relay-style connection.
*/
class Edge {
public string $cursor;
public object $node;
}
<?php
declare(strict_types=1);
namespace Automattic\WooCommerce\Api\Pagination;
/**
* Represents an edge in a Relay-style connection.
*/
class Edge {
public string $cursor;
public object $node;
}