/home/techb158/ileadtechnology.com/SSM/vendor/aloha/twilio/src/Support/Laravel
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/aloha/twilio/src/Support/Laravel/ServiceProvider.php (1008B)
provider()->boot();
}
/**
* Register the service provider.
*/
public function register()
{
return $this->provider()->register();
}
/**
* @return \Illuminate\Support\ServiceProvider
*/
protected function provider()
{
if ($this->provider) {
return $this->provider;
}
if (version_compare(Application::VERSION, '5.0', '<')) {
$this->provider = new L4ServiceProvider($this->app);
} else {
$this->provider = new L5ServiceProvider($this->app);
}
return $this->provider;
}
}