/**
  * Register bindings in the container.
  *
  * @return void
  */
 public function register()
 {
     $this->app->singleton('andrefelipe\\Orchestrate\\Application', function ($app) {
         $httpClient = $this->createHttpClient();
         $application = new Orchestrate\Application();
         $application->setHttpClient($httpClient);
         if ($cacheDriver = config('orchestrate.cache_driver')) {
         }
         return $application;
     });
     $this->app->singleton('andrefelipe\\Orchestrate\\Client', function ($app) {
         $httpClient = $this->createHttpClient();
         $application = new Orchestrate\Client();
         $application->setHttpClient($httpClient);
         return $application;
     });
 }