Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
argonautisbc
/
wp-content
/
plugins
/
woo-custom-add-to-cart-button
/
lib
/
Editing: Service_Provider.php
<?php namespace Barn2\WCB_Lib; /** * An object that provides services (instances of Barn2\WCB_Lib\Service). * * @package Barn2\barn2-lib * @author Barn2 Plugins <info@barn2.co.uk> * @license GPL-3.0 * @copyright Barn2 Media Ltd * @version 1.1 */ interface Service_Provider { /** * Get the service for the specified ID. * * @param string $id The service ID * @return Service The service object */ public function get_service( $id ); /** * Get the list of services provided. * * @return array The list of service objects. */ public function get_services(); }
Save
Cancel