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 | use DeprecatedPropertyPublicAccessTrait; |
||
| 12 | |||
| 13 | /** @var string */ |
||
| 14 | protected $cursor; |
||
| 15 | |||
| 16 | /** @var mixed */ |
||
| 17 | protected $node; |
||
| 18 | |||
| 19 | 56 | public function __construct(string $cursor = null, $node = null) |
|
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | 53 | public function getNode() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | 2 | public function setNode($node): void |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | 55 | public function getCursor(): ? string |
|
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | 1 | public function setCursor(string $cursor): void |
|
| 56 | } |
||
| 57 |