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 / WpEnvironmentInterface.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
WpEnvironmentInterface.php
36 lines
1 <?php
2
3 declare (strict_types=1);
4 namespace Syde\Vendor\Worldline\Inpsyde\WorldlineForWoocommerce\Environment;
5
6 /**
7 * Represents WordPress environment.
8 */
9 interface WpEnvironmentInterface
10 {
11 /**
12 * Return current version of PHP.
13 *
14 * @return string
15 */
16 public function phpVersion() : string;
17 /**
18 * Return current version of WordPress.
19 *
20 * @return string
21 */
22 public function wpVersion() : string;
23 /**
24 * Return current version of WooCommerce, empty string if not installed.
25 *
26 * @return string
27 */
28 public function wcVersion() : string;
29 /**
30 * Return true if WooCommerce plugin is active, false otherwise.
31 *
32 * @return bool
33 */
34 public function isWcActive() : bool;
35 }
36