mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
21 lines
524 B
PHP
21 lines
524 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vendor\Inpsyde\Modularity\Module;
|
|
|
|
/**
|
|
* @phpstan-import-type Service from ServiceModule
|
|
*/
|
|
interface FactoryModule extends Module
|
|
{
|
|
/**
|
|
* Return application factories.
|
|
*
|
|
* Similar to `services`, but object created by given factories are not "cached", but a *new*
|
|
* instance is returned everytime `get()` is called in the container.
|
|
*
|
|
* @return array<string, Service>
|
|
*/
|
|
public function factories(): array;
|
|
}
|