1 | <?php |
||
12 | class ConsolePromptConflictHandler implements ConflictHandlerInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var ConsoleStyle |
||
16 | */ |
||
17 | protected $consoleStyle; |
||
18 | |||
19 | public function __construct(ConsoleStyle $consoleStyle) |
||
23 | |||
24 | /** |
||
25 | * {@inheritdoc} |
||
26 | */ |
||
27 | public function handleConflict(IndexObject $remoteObject, IndexObject $localObject = null, IndexObject $lastLocalObject = null): int |
||
52 | } |
||
53 |
According to the PSR-2, the body of a case statement must start on the line immediately following the case statement.
}
To learn more about the PSR-2 coding standard, please refer to the PHP-Fig.