| 1 | <?php declare(strict_types=1); |
||
| 10 | class Incoming extends BaseRequest |
||
| 11 | { |
||
| 12 | const METHOD = 'GET'; |
||
|
|
|||
| 13 | |||
| 14 | const ENDPOINT = '/friendships/incoming.json'; |
||
| 15 | |||
| 16 | 4 | public function __construct() |
|
| 20 | |||
| 21 | 2 | public function fromCursor(int $cursor): Incoming |
|
| 27 | |||
| 28 | 2 | public function stringifyIds(): Incoming |
|
| 34 | } |
||
| 35 |
This check looks for improperly formatted assignments.
Every assignment must have exactly one space before and one space after the equals operator.
To illustrate:
will have no issues, while
will report issues in lines 1 and 2.