wpmdb_recursive_scan_bottleneck
wpmdb_recursive_scan_bottleneck
Appears in: wp-migrate-db.2.0.2, wp-migrate-db.2.1, wp-migrate-db.2.1.1, wp-migrate-db.2.1.2, wp-migrate-db.2.2.0, wp-migrate-db.2.2.2, wp-migrate-db.2.3.0, wp-migrate-db.2.3.1, wp-migrate-db.2.3.2, wp-migrate-db.2.3.3, wp-migrate-db.2.4.0, wp-migrate-db.2.4.1, wp-migrate-db.2.4.2, wp-migrate-db.2.5.0, wp-migrate-db.2.6.1, wp-migrate-db.2.6.10, wp-migrate-db.2.6.11, wp-migrate-db.2.6.3, wp-migrate-db.2.6.4, wp-migrate-db.2.6.5, wp-migrate-db.2.6.6, wp-migrate-db.2.6.7, wp-migrate-db.2.6.8, wp-migrate-db.2.6.9
Hook Type: filter
Displaying hooks found in version: wp-migrate-db.2.6.9apply_filters('wpmdb_recursive_scan_bottleneck') is found 2 times:
- /class/Common/Filesystem/RecursiveScanner.php line 252
* @return bool */ public function reached_bottleneck() { $bottleneck = apply_filters('wpmdb_recursive_scan_bottleneck', self::BOTTLENECK); return $this->scan_count >= $bottleneck && $this->is_enabled(); } /** * @param string[] $excludes */
- /class/Common/Filesystem/RecursiveScanner.php line 499
* @return int */ private function get_bottleneck() { $bottleneck = apply_filters('wpmdb_recursive_scan_bottleneck', self::BOTTLENECK); return $this->is_enabled() ? $bottleneck - $this->scan_count : -1; } /** * Tests exclusion of a specific path. *