Skip to content

Commit

Permalink
QA: fix doc return type
Browse files Browse the repository at this point in the history
  • Loading branch information
michalbundyra committed Nov 19, 2019
1 parent afb3f14 commit 855ac25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Files/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -2404,7 +2404,7 @@ public function findEndOfStatement($start, $ignore=null)
* If value is omitted, tokens with any value will
* be returned.
*
* @return int | bool
* @return int|bool
*/
public function findFirstOnLine($types, $start, $exclude=false, $value=null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public function process(File $phpcsFile, $stackPtr)
* @param int $stackPtr The position to start looking at.
* @param int $end The position to stop looking at.
*
* @return int | bool
* @return int|bool
*/
private function findNextCase($phpcsFile, $stackPtr, $end)
{
Expand Down

0 comments on commit 855ac25

Please sign in to comment.