Skip to content

Commit

Permalink
Docs: various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Sep 9, 2024
1 parent 77a01e7 commit 12877d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion PHPCSDebug/Sniffs/Debug/TokenListSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public function register()
* @param int $stackPtr The position of the current
* token in the stack.
*
* @return void
* @return int|void Integer stack pointer to skip forward or void to continue
* normal file processing.
*/
public function process(File $phpcsFile, $stackPtr)
{
Expand Down
6 changes: 3 additions & 3 deletions Scripts/CheckSniffCompleteness.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class CheckSniffCompleteness
* To disable showing progress, pass `--no-progress` on the command line
* when calling the script.
*
* @var boolean
* @var bool
*/
protected $showProgress = true;

Expand All @@ -43,7 +43,7 @@ class CheckSniffCompleteness
* To enable "quiet" mode, pass `-q` on the command line when calling
* the script.
*
* @var boolean
* @var bool
*/
protected $quietMode = false;

Expand All @@ -52,7 +52,7 @@ class CheckSniffCompleteness
*
* This will be automatically detected if not set from the command-line.
*
* @var boolean
* @var bool
*/
protected $showColored;

Expand Down
6 changes: 3 additions & 3 deletions Scripts/FileList.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ class FileList
protected $rootPath;

/**
* Recursive directory iterator.
* Regex iterator.
*
* @var \DirectoryIterator
* @var \RegexIterator
*/
protected $fileIterator;

Expand Down Expand Up @@ -85,7 +85,7 @@ public function __construct($directory, $rootPath = '', $filter = '')
/**
* Retrieve the filtered file list iterator.
*
* @return array
* @return \RegexIterator
*/
public function getIterator()
{
Expand Down

0 comments on commit 12877d9

Please sign in to comment.