for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
require dirname( __FILE__ ) . '/../modules/protect.php';
/**
* logs bruteprotect failed logins via sync
*/
class Jetpack_Sync_Module_Protect extends Jetpack_Sync_Module {
private $taxonomy_whitelist;
$taxonomy_whitelist
This check marks private properties in classes that are never used. Those properties can be removed.
function name() {
return "protect";
}
function init_listeners( $callback ) {
add_action( 'jpp_log_failed_attempt', $callback );
This check marks private properties in classes that are never used. Those properties can be removed.