FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
stripe
/
stripe-php
/
lib
/
Service
Edit File: AbstractServiceFactory.php
<?php namespace AmeliaStripe\Service; /** * Abstract base class for all service factories used to expose service * instances through {@link \AmeliaStripe\StripeClient}. * * Service factories serve two purposes: * * 1. Expose properties for all services through the `__get()` magic method. * 2. Lazily initialize each service instance the first time the property for * a given service is used. */ abstract class AbstractServiceFactory { use ServiceNavigatorTrait; /** * @param \AmeliaStripe\StripeClientInterface $client */ public function __construct($client) { $this->client = $client; } }
Save
Back