Issues (71)

auto-update-all.php (1 issue)

Labels
Severity
1
<?php
2
/*
3
 * Plugin Name: Auto update everything in a WordPress site
4
 * Plugin URI:  https://github.com/pothi/wp-mu-plugins
5
 * Version:     0.2
6
 * Description: Automatically update WP core (including major versions), themes, and plugins
7
 * Author:      Pothi Kalimuthu
8
 * Author URI:  https://tinywp.com
9
 * License:     GPL
10
 */
11
12
add_filter( 'auto_update_theme', '__return_true' );
0 ignored issues
show
The function add_filter was not found. Maybe you did not declare it correctly or list all dependencies? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

12
/** @scrutinizer ignore-call */ 
13
add_filter( 'auto_update_theme', '__return_true' );
Loading history...
13
add_filter( 'auto_update_plugin', '__return_true' );
14
add_filter( 'allow_major_auto_core_updates', '__return_true' );
15