Home
last modified time | relevance | path

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

/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Reports/
H A DVersionControl.php52 private $_praiseCache = array(); variable in PHP_CodeSniffer_Reports_VersionControl
95 $this->_praiseCache[$author] = array(
101 $this->_praiseCache[$author]['bad']++;
139 $this->_praiseCache[$author] = array(
145 $this->_praiseCache[$author]['good']++;
226 if ($this->_praiseCache[$author]['good'] === 0) {
229 … $total = ($this->_praiseCache[$author]['bad'] + $this->_praiseCache[$author]['good']);
230 $percent = round(($this->_praiseCache[$author]['bad'] / $total * 100), 2);