Issues (71)

auto-update-plugins.php (1 issue)

1
<?php
2
3
/*
4
 * Plugin Name: Auto plugin updates
5
 * Plugin URI:  https://github.com/pothi/wordpress-mu-plugins
6
 * Version:     0.1
7
 * Description: Automatically update all plugins
8
 * Author:      Pothi Kalimuthu
9
 * Author URI:  http://pothi.info
10
 * License:     GPL
11
 */
12
13
14
add_filter( 'auto_update_plugin', '__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

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