1 | <?php |
||
22 | class File extends AbstractFileDecorator |
||
23 | { |
||
24 | /** |
||
25 | * Returns the eol char of the file |
||
26 | * |
||
27 | * @return string Returns the EndOfLine-Character of the processed file |
||
28 | */ |
||
29 | public function getEolChar(): string |
||
33 | |||
34 | /** |
||
35 | * Returns the Wrapped PHP_CodeSniffer_Fixer |
||
36 | * |
||
37 | * @return Fixer Returns the fixer class. |
||
38 | */ |
||
39 | public function getFixer(): Fixer |
||
43 | |||
44 | /** |
||
45 | * Returns the token stack for this file. |
||
46 | * |
||
47 | 121 | * @return array Return array of token data |
|
48 | */ |
||
49 | 121 | public function getTokens(): array |
|
53 | } |
||
54 |