| @@ -71,13 +71,13 @@ | ||
| 71 | 71 | if ( TablePress::$model_options->get( 'use_custom_css' ) && '' !== $custom_css ) { |
| 72 | 72 | /** |
| 73 | 73 | * Load WP file functions to provide filesystem access functions early. |
| 74 | 74 | */ |
| 75 | - require_once ABSPATH . 'wp-admin/includes/file.php'; | |
| 75 | + require_once ABSPATH . 'wp-admin/includes/file.php'; // @phpstan-ignore requireOnce.fileNotFound (This is a WordPress core file that always exists.) | |
| 76 | 76 | /** |
| 77 | 77 | * Load WP admin template functions to provide `submit_button()` which is necessary for `request_filesystem_credentials()`. |
| 78 | 78 | */ |
| 79 | - require_once ABSPATH . 'wp-admin/includes/template.php'; | |
| 79 | + require_once ABSPATH . 'wp-admin/includes/template.php'; // @phpstan-ignore requireOnce.fileNotFound (This is a WordPress core file that always exists.) | |
| 80 | 80 | $tablepress_css = TablePress::load_class( 'TablePress_CSS', 'class-css.php', 'classes' ); |
| 81 | 81 | |
| 82 | 82 | $custom_css_minified = TablePress::$model_options->get( 'custom_css_minified' ); |
| 83 | 83 | |