1 | <?php declare(strict_types=1); |
||
10 | class Outgoing extends BaseRequest |
||
11 | { |
||
12 | const METHOD = 'GET'; |
||
|
|||
13 | |||
14 | const ENDPOINT = '/friendships/outgoing.json'; |
||
15 | |||
16 | 4 | public function __construct() |
|
20 | |||
21 | 2 | public function fromCursor(int $cursor): Outgoing |
|
27 | |||
28 | 2 | public function stringifyIds(): Outgoing |
|
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.