PluginProbe ʕ •ᴥ•ʔ
Worldline Global Online Pay for WooCommerce / 2.5.22
Worldline Global Online Pay for WooCommerce v2.5.22
2.5.22 2.5.20 2.5.17 trunk 1.0.0 1.0.1 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.4.1 2.4.2 2.4.4 2.4.5 2.4.6 2.5.1 2.5.10 2.5.11 2.5.12 2.5.14 2.5.16 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.5.8 2.5.9
worldline-for-woocommerce / src / Environment / WpEnvironmentFactoryInterface.php
worldline-for-woocommerce / src / Environment Last commit date
EnvironmentModule.php 1 week ago WpEnvironment.php 1 week ago WpEnvironmentFactory.php 1 week ago WpEnvironmentFactoryInterface.php 1 week ago WpEnvironmentInterface.php 1 week ago
WpEnvironmentFactoryInterface.php
18 lines
1 <?php
2
3 declare (strict_types=1);
4 namespace Syde\Vendor\Worldline\Inpsyde\WorldlineForWoocommerce\Environment;
5
6 /**
7 * Service able to create WpEnvironmentInterface instance.
8 */
9 interface WpEnvironmentFactoryInterface
10 {
11 /**
12 * Create WpEnvironmentInterface instance from available globals.
13 *
14 * @return WpEnvironmentInterface
15 */
16 public function createFromGlobals() : WpEnvironmentInterface;
17 }
18