PluginProbe ʕ •ᴥ•ʔ
WooCommerce PayPal Payments / 4.1.0
WooCommerce PayPal Payments v4.1.0
4.1.0 4.0.4 4.0.3 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.4.0 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.7.0 1.7.1 1.8.0 1.8.1 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1.0 2.2.0 2.2.1 2.2.2 2.3.0 2.3.1 2.4.0 2.4.1 2.4.2 2.4.3 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.6.0 2.6.1 2.7.0 2.7.1 2.8.0 2.8.1 2.8.2 2.8.3 2.9.0 2.9.1 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.4.0 3.4.1 4.0.0 4.0.1 4.0.2
woocommerce-paypal-payments / src / PluginModule.php
woocommerce-paypal-payments / src Last commit date
Assets 1 month ago Http 1 year ago PPCP.php 1 year ago PluginModule.php 3 months ago services.php 3 months ago
PluginModule.php
36 lines
1 <?php
2
3 /**
4 * The plugin module.
5 *
6 * @package WooCommerce\PayPalCommerce
7 */
8 declare (strict_types=1);
9 namespace WooCommerce\PayPalCommerce;
10
11 use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ExecutableModule;
12 use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ModuleClassNameIdTrait;
13 use WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module\ServiceModule;
14 use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
15 /**
16 * Class PluginModule
17 */
18 class PluginModule implements ServiceModule, ExecutableModule
19 {
20 use ModuleClassNameIdTrait;
21 /**
22 * {@inheritDoc}
23 */
24 public function services(): array
25 {
26 return require __DIR__ . '/services.php';
27 }
28 /**
29 * {@inheritDoc}
30 */
31 public function run(ContainerInterface $c): bool
32 {
33 return \true;
34 }
35 }
36