array( * 'lambda' => array( * 'type' => 'error' | 'warning', * 'message' => 'Use anonymous functions instead please!', * 'functions' => array( 'file_get_contents', 'create_function' ), * ) * ) * * @return array */ public function getGroups() { return array( 'timezone_change' => array( 'type' => 'error', 'message' => 'Using %s() and similar isn\'t allowed, instead use WP internal timezone support.', 'functions' => array( 'date_default_timezone_set', ), ), ); } }