for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
declare(strict_types=1);
namespace Overblog\GraphQLBundle\Relay\Connection\Output;
use Overblog\GraphQLBundle\Relay\Connection\EdgeInterface;
class Edge implements EdgeInterface
{
/** @var string */
protected $cursor;
/** @var mixed */
protected $node;
public function __construct(string $cursor = null, $node = null)
$this->cursor = $cursor;
$this->node = $node;
}
/**
* {@inheritdoc}
*/
public function getNode()
return $this->node;
public function setNode($node): void
public function getCursor(): ? string
return $this->cursor;
public function setCursor(string $cursor): void