HEX
Server: Apache/2.4.41
System: Linux mainweb 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: nationalmedicaregrp (1119)
PHP: 8.3.7
Disabled: exec,passthru,shell_exec,system,popen,proc_open,pcntl_exec
Upload Files
File: /home/healthbenefitapproval/public_html/wp-content/plugins/wpseo-local/src/main.php
<?php

namespace Yoast\WP\Local;

use Yoast\WP\Local\Config\Dependency_Injection\Container_Compiler;
use Yoast\WP\Local\Generated\Cached_Container;

if ( ! \defined( 'WPSEO_LOCAL_VERSION' ) ) {
	\header( 'Status: 403 Forbidden' );
	\header( 'HTTP/1.1 403 Forbidden' );
	exit();
}

$development = \defined( 'YOAST_ENVIRONMENT' ) && \YOAST_ENVIRONMENT === 'development';
if ( $development && \class_exists( '\Yoast\WP\Local\Config\Dependency_Injection\Container_Compiler' ) ) {
	// Exception here is unhandled as it will only occur in development.
	Container_Compiler::compile( $development );
}

if ( \file_exists( __DIR__ . '/generated/container.php' ) ) {
	require_once __DIR__ . '/generated/container.php';
	$container = new Cached_Container();
	try {
		$container->get( Loader::class )->load();
	} catch ( \Exception $e ) {
		if ( $development ) {
			throw $e;
		}
		// Don't crash the entire site, simply don't load.
		// TODO: Add error notifications here.
	}
}