Home
last modified time | relevance | path

Searched refs:_sourceCache (Results 1 – 2 of 2) sorted by relevance

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DSource.php40 private $_sourceCache = array(); variable in PHP_CodeSniffer_Reports_Source
72 if (isset($this->_sourceCache[$source]) === false) {
96 $this->_sourceCache[$source] = array(
103 $this->_sourceCache[$source]['count']++;
139 if (empty($this->_sourceCache) === true) {
146 foreach ($this->_sourceCache as $source => $data) {
158 asort($this->_sourceCache);
159 $this->_sourceCache = array_reverse($this->_sourceCache);
191 foreach ($this->_sourceCache as $source => $sourceData) {
252 echo ' WERE FOUND IN '.count($this->_sourceCache).' SOURCE';
[all …]
H A DVersionControl.php59 private $_sourceCache = array(); variable in PHP_CodeSniffer_Reports_VersionControl
109 if (isset($this->_sourceCache[$author][$source]) === false) {
110 $this->_sourceCache[$author][$source] = array(
115 $this->_sourceCache[$author][$source]['count']++;
188 if ($showSources === true && isset($this->_sourceCache[$author]) === true) {
189 foreach ($this->_sourceCache[$author] as $source => $sourceData) {
246 if ($showSources === true && isset($this->_sourceCache[$author]) === true) {
247 $errors = $this->_sourceCache[$author];