public function TestLogger::countErrors in Configuration selector 8.2
Same name and namespace in other branches
- 8 src/TestLogger.php \Drupal\config_selector\TestLogger::countErrors()
File
- src/
TestLogger.php, line 144
Class
- TestLogger
- A test logger.
Namespace
Drupal\config_selectorCode
public function countErrors() {
return count(static::$logs['critical']) + count(static::$logs['error']) + count(static::$logs['emergency']);
}