• File: require-file-helper.php
  • Full Path: /home/matthif/www/wp-content/plugins/wordpress-seo/src/helpers/require-file-helper.php
  • Date Modified: 02/24/2024 11:29 PM
  • File size: 305 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Yoast\WP\SEO\Helpers;

/**
 * Represents a file helper.
 */
class Require_File_Helper {

    
/**
     * Activates the plugin based on the given plugin file.
     *
     * @param string $path The path to the required file.
     */
    
public function require_file_once$path ) {
        require_once 
$path;
    }
}