@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace BestIt\Sniffs\Functions; |
| 6 | 6 | |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | |
| 187 | 187 | $phpcsFile->fixer->beginChangeset(); |
| 188 | 188 | $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1); |
| 189 | - $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces . 'return $this;'); |
|
| 189 | + $phpcsFile->fixer->addContentBefore($closingBracePtr - 1, $expectedReturnSpaces.'return $this;'); |
|
| 190 | 190 | $phpcsFile->fixer->addNewlineBefore($closingBracePtr - 1); |
| 191 | 191 | $phpcsFile->fixer->endChangeset(); |
| 192 | 192 | } |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | /** |
| 48 | 48 | * Registers the tokens that this sniff wants to listen for. |
| 49 | 49 | * |
| 50 | - * @return int[] |
|
| 50 | + * @return integer[] |
|
| 51 | 51 | */ |
| 52 | 52 | public function register() |
| 53 | 53 | { |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace BestIt\Sniffs\Formatting; |
| 6 | 6 | |