1234567891011121314151617181920212223242526 |
- <?php
- /**
- * This file is part of the apiadmin/tiktok.
- */
- namespace App\Libs\TikTok\OpenPlatform\VideoData;
- use Pimple\Container;
- use Pimple\ServiceProviderInterface;
- /**
- * Class ServiceProvider.
- *
- * @author zhaoxiang <zhaoxiang051405@gmail.com>
- */
- class ServiceProvider implements ServiceProviderInterface {
- /**
- * {@inheritdoc}.
- */
- public function register(Container $pimple): void {
- $pimple['video_data'] = static function($app) {
- return new Client($app);
- };
- }
- }
|