
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

declare (strict_types=1);
namespace Syde\Vendor\Worldline\Inpsyde\WorldlineForWoocommerce\Environment;

/**
 * Service able to create WpEnvironmentInterface instance.
 */
interface WpEnvironmentFactoryInterface
{
    /**
     * Create WpEnvironmentInterface instance from available globals.
     *
     * @return WpEnvironmentInterface
     */
    public function createFromGlobals(): WpEnvironmentInterface;
}
