We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 9 | class Edge implements EdgeInterface |
||
| 10 | { |
||
| 11 | /** @var string */ |
||
| 12 | protected $cursor; |
||
| 13 | |||
| 14 | /** @var mixed */ |
||
| 15 | protected $node; |
||
| 16 | |||
| 17 | 54 | public function __construct(string $cursor = null, $node = null) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * {@inheritdoc} |
||
| 25 | */ |
||
| 26 | 51 | public function getNode() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 1 | public function setNode($node): void |
|
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | 53 | public function getCursor(): ? string |
|
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function setCursor(string $cursor): void |
||
| 54 | } |
||
| 55 |