| Total Complexity | 64 |
| Total Lines | 543 |
| Duplicated Lines | 0 % |
| Changes | 10 | ||
| Bugs | 0 | Features | 1 |
Complex classes like WPInv_Plugin often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use WPInv_Plugin, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 15 | class WPInv_Plugin { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * GetPaid version. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $version; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Data container. |
||
| 26 | * |
||
| 27 | * @var array |
||
| 28 | */ |
||
| 29 | protected $data = array(); |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Form elements instance. |
||
| 33 | * |
||
| 34 | * @var WPInv_Payment_Form_Elements |
||
|
|
|||
| 35 | */ |
||
| 36 | public $form_elements; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param array An array of payment gateways. |
||
| 40 | */ |
||
| 41 | public $gateways; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Class constructor. |
||
| 45 | */ |
||
| 46 | public function __construct() { |
||
| 47 | $this->define_constants(); |
||
| 48 | $this->includes(); |
||
| 49 | $this->init_hooks(); |
||
| 50 | $this->set_properties(); |
||
| 51 | } |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Sets a custom data property. |
||
| 55 | * |
||
| 56 | * @param string $prop The prop to set. |
||
| 57 | * @param mixed $value The value to retrieve. |
||
| 58 | */ |
||
| 59 | public function set( $prop, $value ) { |
||
| 61 | } |
||
| 62 | |||
| 63 | /** |
||
| 64 | * Gets a custom data property. |
||
| 65 | * |
||
| 66 | * @param string $prop The prop to set. |
||
| 67 | * @return mixed The value. |
||
| 68 | */ |
||
| 69 | public function get( $prop ) { |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * Define class properties. |
||
| 80 | */ |
||
| 81 | public function set_properties() { |
||
| 101 | |||
| 102 | } |
||
| 103 | |||
| 104 | /** |
||
| 105 | * Define plugin constants. |
||
| 106 | */ |
||
| 107 | public function define_constants() { |
||
| 111 | } |
||
| 112 | |||
| 113 | /** |
||
| 114 | * Hook into actions and filters. |
||
| 115 | * |
||
| 116 | * @since 1.0.19 |
||
| 117 | */ |
||
| 118 | protected function init_hooks() { |
||
| 119 | /* Internationalize the text strings used. */ |
||
| 120 | add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
||
| 121 | |||
| 122 | // Init the plugin after WordPress inits. |
||
| 123 | add_action( 'init', array( $this, 'init' ), 1 ); |
||
| 124 | add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
||
| 125 | add_action( 'init', array( $this, 'wpinv_actions' ) ); |
||
| 126 | add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
||
| 127 | |||
| 128 | if ( class_exists( 'BuddyPress' ) ) { |
||
| 129 | add_action( 'bp_include', array( &$this, 'bp_invoicing_init' ) ); |
||
| 130 | } |
||
| 131 | |||
| 132 | add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
||
| 133 | add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
||
| 134 | add_action( 'wp_head', array( $this, 'wp_head' ) ); |
||
| 135 | add_action( 'widgets_init', array( &$this, 'register_widgets' ) ); |
||
| 136 | add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
||
| 137 | add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
||
| 138 | |||
| 139 | // Fires after registering actions. |
||
| 140 | do_action( 'wpinv_actions', $this ); |
||
| 141 | do_action( 'getpaid_actions', $this ); |
||
| 142 | |||
| 143 | } |
||
| 144 | |||
| 145 | public function plugins_loaded() { |
||
| 146 | /* Internationalize the text strings used. */ |
||
| 147 | $this->load_textdomain(); |
||
| 148 | |||
| 149 | do_action( 'wpinv_loaded' ); |
||
| 150 | |||
| 151 | // Fix oxygen page builder conflict |
||
| 152 | if ( function_exists( 'ct_css_output' ) ) { |
||
| 153 | wpinv_oxygen_fix_conflict(); |
||
| 154 | } |
||
| 155 | } |
||
| 156 | |||
| 157 | /** |
||
| 158 | * Load the translation of the plugin. |
||
| 159 | * |
||
| 160 | * @since 1.0 |
||
| 161 | */ |
||
| 162 | public function load_textdomain( $locale = NULL ) { |
||
| 163 | if ( empty( $locale ) ) { |
||
| 164 | $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale(); |
||
| 165 | } |
||
| 166 | |||
| 167 | $locale = apply_filters( 'plugin_locale', $locale, 'invoicing' ); |
||
| 168 | |||
| 169 | unload_textdomain( 'invoicing' ); |
||
| 170 | load_textdomain( 'invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo' ); |
||
| 171 | load_plugin_textdomain( 'invoicing', false, WPINV_PLUGIN_DIR . 'languages' ); |
||
| 172 | |||
| 173 | /** |
||
| 174 | * Define language constants. |
||
| 175 | */ |
||
| 176 | require_once( WPINV_PLUGIN_DIR . 'language.php' ); |
||
| 177 | } |
||
| 178 | |||
| 179 | /** |
||
| 180 | * Include required core files used in admin and on the frontend. |
||
| 181 | */ |
||
| 182 | public function includes() { |
||
| 183 | |||
| 184 | // Start with the settings. |
||
| 185 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
||
| 186 | |||
| 187 | // Packages/libraries. |
||
| 188 | require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
||
| 189 | require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
||
| 190 | |||
| 191 | // Load functions. |
||
| 192 | require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
||
| 193 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
||
| 194 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
||
| 195 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
||
| 196 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
||
| 197 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
||
| 198 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
||
| 199 | require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
||
| 200 | require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
||
| 201 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
||
| 202 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
||
| 203 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
||
| 204 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
||
| 205 | require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
||
| 206 | require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
||
| 207 | |||
| 208 | // Register autoloader. |
||
| 209 | try { |
||
| 210 | spl_autoload_register( array( $this, 'autoload' ), true ); |
||
| 211 | } catch ( Exception $e ) { |
||
| 212 | wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
||
| 213 | } |
||
| 214 | |||
| 215 | require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
||
| 216 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
||
| 217 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
||
| 218 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
||
| 219 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
||
| 220 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
||
| 221 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
||
| 222 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
||
| 223 | require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
||
| 224 | require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
||
| 225 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
||
| 226 | require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
||
| 227 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
||
| 228 | require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
||
| 229 | require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
||
| 230 | require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
||
| 231 | require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
||
| 232 | require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
||
| 233 | require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
||
| 234 | require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
||
| 235 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
||
| 236 | |||
| 237 | if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
||
| 238 | GetPaid_Post_Types_Admin::init(); |
||
| 239 | |||
| 240 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
||
| 241 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
||
| 242 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
||
| 243 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
||
| 244 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
||
| 245 | require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
||
| 246 | // load the user class only on the users.php page |
||
| 247 | global $pagenow; |
||
| 248 | if($pagenow=='users.php'){ |
||
| 249 | new WPInv_Admin_Users(); |
||
| 250 | } |
||
| 251 | } |
||
| 252 | |||
| 253 | // Register cli commands |
||
| 254 | if ( defined( 'WP_CLI' ) && WP_CLI ) { |
||
| 255 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
||
| 256 | WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
||
| 257 | } |
||
| 258 | |||
| 259 | } |
||
| 260 | |||
| 261 | /** |
||
| 262 | * Class autoloader |
||
| 263 | * |
||
| 264 | * @param string $class_name The name of the class to load. |
||
| 265 | * @access public |
||
| 266 | * @since 1.0.19 |
||
| 267 | * @return void |
||
| 268 | */ |
||
| 269 | public function autoload( $class_name ) { |
||
| 270 | |||
| 271 | // Normalize the class name... |
||
| 272 | $class_name = strtolower( $class_name ); |
||
| 273 | |||
| 274 | // ... and make sure it is our class. |
||
| 275 | if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
||
| 276 | return; |
||
| 277 | } |
||
| 278 | |||
| 279 | // Next, prepare the file name from the class. |
||
| 280 | $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
||
| 281 | |||
| 282 | // Base path of the classes. |
||
| 283 | $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
||
| 284 | |||
| 285 | // And an array of possible locations in order of importance. |
||
| 286 | $locations = array( |
||
| 287 | "$plugin_path/includes", |
||
| 288 | "$plugin_path/includes/data-stores", |
||
| 289 | "$plugin_path/includes/gateways", |
||
| 290 | "$plugin_path/includes/payments", |
||
| 291 | "$plugin_path/includes/geolocation", |
||
| 292 | "$plugin_path/includes/reports", |
||
| 293 | "$plugin_path/includes/api", |
||
| 294 | "$plugin_path/includes/admin", |
||
| 295 | "$plugin_path/includes/admin/meta-boxes", |
||
| 296 | ); |
||
| 297 | |||
| 298 | foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
||
| 299 | |||
| 300 | if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
||
| 301 | include trailingslashit( $location ) . $file_name; |
||
| 302 | break; |
||
| 303 | } |
||
| 304 | |||
| 305 | } |
||
| 306 | |||
| 307 | } |
||
| 308 | |||
| 309 | /** |
||
| 310 | * Inits hooks etc. |
||
| 311 | */ |
||
| 312 | public function init() { |
||
| 313 | |||
| 314 | // Fires before getpaid inits. |
||
| 315 | do_action( 'before_getpaid_init', $this ); |
||
| 316 | |||
| 317 | // Maybe upgrade. |
||
| 318 | $this->maybe_upgrade_database(); |
||
| 319 | |||
| 320 | // Load default gateways. |
||
| 321 | $gateways = apply_filters( |
||
| 322 | 'getpaid_default_gateways', |
||
| 323 | array( |
||
| 324 | 'manual' => 'GetPaid_Manual_Gateway', |
||
| 325 | 'paypal' => 'GetPaid_Paypal_Gateway', |
||
| 326 | 'worldpay' => 'GetPaid_Worldpay_Gateway', |
||
| 327 | 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
||
| 328 | 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
||
| 329 | ) |
||
| 330 | ); |
||
| 331 | |||
| 332 | foreach ( $gateways as $id => $class ) { |
||
| 333 | $this->gateways[ $id ] = new $class(); |
||
| 334 | } |
||
| 335 | |||
| 336 | // Fires after getpaid inits. |
||
| 337 | do_action( 'getpaid_init', $this ); |
||
| 338 | |||
| 339 | } |
||
| 340 | |||
| 341 | /** |
||
| 342 | * Checks if this is an IPN request and processes it. |
||
| 343 | */ |
||
| 344 | public function maybe_process_ipn() { |
||
| 345 | |||
| 346 | // Ensure that this is an IPN request. |
||
| 347 | if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
||
| 348 | return; |
||
| 349 | } |
||
| 350 | |||
| 351 | $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
||
| 352 | |||
| 353 | do_action( 'wpinv_verify_payment_ipn', $gateway ); |
||
| 354 | do_action( "wpinv_verify_{$gateway}_ipn" ); |
||
| 355 | exit; |
||
| 356 | |||
| 357 | } |
||
| 358 | |||
| 359 | public function enqueue_scripts() { |
||
| 360 | |||
| 361 | // Fires before adding scripts. |
||
| 362 | do_action( 'getpaid_enqueue_scripts' ); |
||
| 363 | |||
| 364 | $localize = array(); |
||
| 365 | $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
||
| 366 | $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
||
| 367 | $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
||
| 368 | $localize['UseTaxes'] = wpinv_use_taxes(); |
||
| 369 | $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
||
| 370 | $localize['loading'] = __( 'Loading...', 'invoicing' ); |
||
| 371 | $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
||
| 372 | |||
| 373 | $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
||
| 374 | |||
| 375 | $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
||
| 376 | wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
||
| 377 | wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
||
| 378 | } |
||
| 379 | |||
| 380 | public function wpinv_actions() { |
||
| 381 | if ( isset( $_REQUEST['wpi_action'] ) ) { |
||
| 382 | do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
||
| 383 | } |
||
| 384 | } |
||
| 385 | |||
| 386 | /** |
||
| 387 | * Fires an action after verifying that a user can fire them. |
||
| 388 | * |
||
| 389 | * Note: If the action is on an invoice, subscription etc, esure that the |
||
| 390 | * current user owns the invoice/subscription. |
||
| 391 | */ |
||
| 392 | public function maybe_do_authenticated_action() { |
||
| 403 | |||
| 404 | } |
||
| 405 | |||
| 406 | } |
||
| 407 | |||
| 408 | public function pre_get_posts( $wp_query ) { |
||
| 409 | |||
| 410 | if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
||
| 411 | $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
||
| 412 | } |
||
| 413 | |||
| 414 | return $wp_query; |
||
| 415 | } |
||
| 416 | |||
| 417 | public function bp_invoicing_init() { |
||
| 418 | require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php' ); |
||
| 419 | } |
||
| 420 | |||
| 421 | /** |
||
| 422 | * Register widgets |
||
| 423 | * |
||
| 424 | */ |
||
| 425 | public function register_widgets() { |
||
| 426 | |||
| 427 | // Currently, UX Builder does not work particulaly well with SuperDuper. |
||
| 428 | // So we disable our widgets when editing a page with UX Builder. |
||
| 429 | if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
||
| 430 | return; |
||
| 431 | } |
||
| 432 | |||
| 433 | $widgets = apply_filters( |
||
| 434 | 'getpaid_widget_classes', |
||
| 435 | array( |
||
| 436 | 'WPInv_Checkout_Widget', |
||
| 437 | 'WPInv_History_Widget', |
||
| 438 | 'WPInv_Receipt_Widget', |
||
| 439 | 'WPInv_Subscriptions_Widget', |
||
| 440 | 'WPInv_Buy_Item_Widget', |
||
| 441 | 'WPInv_Messages_Widget', |
||
| 442 | 'WPInv_GetPaid_Widget' |
||
| 443 | ) |
||
| 444 | ); |
||
| 445 | |||
| 446 | foreach ( $widgets as $widget ) { |
||
| 447 | register_widget( $widget ); |
||
| 448 | } |
||
| 449 | |||
| 450 | } |
||
| 451 | |||
| 452 | /** |
||
| 453 | * Upgrades the database. |
||
| 454 | * |
||
| 455 | * @since 2.0.2 |
||
| 456 | */ |
||
| 457 | public function maybe_upgrade_database() { |
||
| 458 | |||
| 459 | $wpi_version = get_option( 'wpinv_version', 0 ); |
||
| 460 | |||
| 461 | if ( $wpi_version == WPINV_VERSION ) { |
||
| 462 | return; |
||
| 463 | } |
||
| 464 | |||
| 465 | $installer = new GetPaid_Installer(); |
||
| 466 | |||
| 467 | if ( empty( $wpi_version ) ) { |
||
| 468 | return $installer->upgrade_db( 0 ); |
||
| 469 | } |
||
| 470 | |||
| 471 | $upgrades = array( |
||
| 472 | '0.0.5' => '004', |
||
| 473 | '1.0.3' => '102', |
||
| 474 | '2.0.0' => '118', |
||
| 475 | '2.0.8' => '207', |
||
| 476 | ); |
||
| 477 | |||
| 478 | foreach ( $upgrades as $key => $method ) { |
||
| 479 | |||
| 480 | if ( version_compare( $wpi_version, $key, '<' ) ) { |
||
| 481 | return $installer->upgrade_db( $method ); |
||
| 482 | } |
||
| 483 | |||
| 484 | } |
||
| 485 | |||
| 486 | } |
||
| 487 | |||
| 488 | /** |
||
| 489 | * Flushes the permalinks if needed. |
||
| 490 | * |
||
| 491 | * @since 2.0.8 |
||
| 492 | */ |
||
| 493 | public function maybe_flush_permalinks() { |
||
| 500 | } |
||
| 501 | |||
| 502 | } |
||
| 503 | |||
| 504 | /** |
||
| 505 | * Remove our pages from yoast sitemaps. |
||
| 506 | * |
||
| 507 | * @since 1.0.19 |
||
| 508 | * @param int[] $excluded_posts_ids |
||
| 509 | */ |
||
| 510 | public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
||
| 539 | |||
| 540 | } |
||
| 541 | |||
| 542 | /** |
||
| 543 | * Displays additional footer code. |
||
| 544 | * |
||
| 545 | * @since 2.0.0 |
||
| 546 | */ |
||
| 547 | public function wp_footer() { |
||
| 549 | } |
||
| 550 | |||
| 551 | /** |
||
| 552 | * Displays additional header code. |
||
| 553 | * |
||
| 554 | * @since 2.0.0 |
||
| 555 | */ |
||
| 556 | public function wp_head() { |
||
| 558 | } |
||
| 559 | |||
| 561 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths