Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sniff: remove init() method #2364

Merged
merged 1 commit into from
Aug 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 3 additions & 18 deletions WordPress/Sniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ abstract class Sniff implements PHPCS_Sniff {
* normal file processing.
*/
public function process( File $phpcsFile, $stackPtr ) {
$this->init( $phpcsFile );
$this->phpcsFile = $phpcsFile;
$this->tokens = $phpcsFile->getTokens();

return $this->process_token( $stackPtr );
}

Expand All @@ -67,21 +69,4 @@ public function process( File $phpcsFile, $stackPtr ) {
* normal file processing.
*/
abstract public function process_token( $stackPtr );

/**
* Initialize the class for the current process.
*
* This method must be called by child classes before using many of the methods
* below.
*
* @since 0.4.0
*
* @param \PHP_CodeSniffer\Files\File $phpcsFile The file currently being processed.
*
* @return void
*/
protected function init( File $phpcsFile ) {
$this->phpcsFile = $phpcsFile;
$this->tokens = $phpcsFile->getTokens();
}
}