2024-08-01 13:53:10 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
|
|
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Register any application services.
|
|
|
|
|
*/
|
|
|
|
|
public function register(): void
|
|
|
|
|
{
|
2024-08-24 22:19:40 -05:00
|
|
|
$this->app->bind(
|
|
|
|
|
\App\Interfaces\MarketData\MarketDataInterface::class,
|
2024-09-13 20:20:19 -05:00
|
|
|
\App\Interfaces\MarketData\FallbackInterface::class
|
2024-08-24 22:19:40 -05:00
|
|
|
);
|
2024-08-01 13:53:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Bootstrap any application services.
|
|
|
|
|
*/
|
|
|
|
|
public function boot(): void
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
}
|