You are here

function ScopeInfo::__construct in Coder 8.2

Constructor.

Parameters

int $currScope:

File

coder_sniffer/DrupalPractice/Sniffs/CodeAnalysis/VariableAnalysisSniff.php, line 40

Class

ScopeInfo
Holds details of a scope.

Namespace

DrupalPractice\Sniffs\CodeAnalysis

Code

function __construct($currScope) {

  // TODO: extract opener/closer.
  $this->owner = $currScope;
}