Skip to content

Commit 75e7ec0

Browse files
committed
Fixed some return value issues
1 parent 5fff209 commit 75e7ec0

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

src/Config.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ public function setCommandLineValues($args)
459459
/**
460460
* Restore default values for all possible command line arguments.
461461
*
462-
* @return array
462+
* @return void
463463
*/
464464
public function restoreDefaults()
465465
{

src/Fixer.php

+1
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,7 @@ public function endChangeset()
421421
}
422422

423423
$this->changeset = [];
424+
return true;
424425

425426
}//end endChangeset()
426427

src/Runner.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ public function runPHPCBF()
232232
/**
233233
* Exits if the minimum requirements of PHP_CodeSniffer are not met.
234234
*
235-
* @return array
235+
* @return void
236236
* @throws \PHP_CodeSniffer\Exceptions\DeepExitException If the requirements are not met.
237237
*/
238238
public function checkRequirements()

src/Standards/Squiz/Sniffs/Commenting/FunctionCommentSniff.php

+2
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,8 @@ protected function checkInheritdoc(File $phpcsFile, $stackPtr, $commentStart)
758758
}
759759
}
760760

761+
return false;
762+
761763
}//end checkInheritdoc()
762764

763765

0 commit comments

Comments
 (0)