Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
woocommerce-payments
/
src
:
wcpay-get-container.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * WCPay container loader * * @package WooCommerce\Payments */ use WCPay\Container; /** * Returns the WCPay DI container. * * @return Container */ function wcpay_get_container() { if ( ! isset( $GLOBALS['wcpay_container'] ) ) { $GLOBALS['wcpay_container'] = new Container(); } return $GLOBALS['wcpay_container']; }