Skip to content

Commit 855ac25

Browse files
committed
QA: fix doc return type
1 parent afb3f14 commit 855ac25

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Files/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2404,7 +2404,7 @@ public function findEndOfStatement($start, $ignore=null)
24042404
* If value is omitted, tokens with any value will
24052405
* be returned.
24062406
*
2407-
* @return int | bool
2407+
* @return int|bool
24082408
*/
24092409
public function findFirstOnLine($types, $start, $exclude=false, $value=null)
24102410
{

src/Standards/PSR2/Sniffs/ControlStructures/SwitchDeclarationSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public function process(File $phpcsFile, $stackPtr)
208208
* @param int $stackPtr The position to start looking at.
209209
* @param int $end The position to stop looking at.
210210
*
211-
* @return int | bool
211+
* @return int|bool
212212
*/
213213
private function findNextCase($phpcsFile, $stackPtr, $end)
214214
{

0 commit comments

Comments
 (0)