Skip to content

Commit 6be0068

Browse files
committed
Remove unused imports
1 parent 1021167 commit 6be0068

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

VariableAnalysis/Lib/ScopeManager.php

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,8 @@
33
namespace VariableAnalysis\Lib;
44

55
use VariableAnalysis\Lib\ScopeInfo;
6-
use VariableAnalysis\Lib\ScopeType;
7-
use VariableAnalysis\Lib\VariableInfo;
8-
use VariableAnalysis\Lib\Constants;
96
use VariableAnalysis\Lib\Helpers;
10-
use PHP_CodeSniffer\Sniffs\Sniff;
117
use PHP_CodeSniffer\Files\File;
12-
use PHP_CodeSniffer\Util\Tokens;
138

149
class ScopeManager
1510
{
@@ -32,7 +27,7 @@ class ScopeManager
3227
*
3328
* @return ScopeInfo
3429
*/
35-
public function recordScopeStartAndEnd($phpcsFile, $scopeStartIndex)
30+
public function recordScopeStartAndEnd(File $phpcsFile, $scopeStartIndex)
3631
{
3732
$scopeEndIndex = Helpers::getScopeCloseForScopeOpen($phpcsFile, $scopeStartIndex);
3833
$filename = $phpcsFile->getFilename();

0 commit comments

Comments
 (0)