12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * This file is part of the apiadmin/tiktok.
- */
- namespace App\Libs\TikTok\MiniProgram\Capacity;
- use Pimple\Container;
- use Pimple\ServiceProviderInterface;
- /**
- * QrCode ServiceProvider.
- *
- * @author dysodeng <dysodengs@gmail.com>
- */
- class ServiceProvider implements ServiceProviderInterface
- {
- /**
- * {@inheritdoc}.
- */
- public function register(Container $pimple): void
- {
- $pimple['capacity'] = static function ($app) {
- return new Client($app);
- };
- }
- }
|