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 |