Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Jan 29, 2022
1 parent 9e14ac1 commit a4dded5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.4.0 (2022-??-??)
## 1.4.0 (2022-01-29)

- Added support for Laravel 9

Expand Down
4 changes: 1 addition & 3 deletions src/Facades/TwilioClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ final class TwilioClient extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
protected static function getFacadeAccessor(): string
{
return ConnectionManager::class;
}
Expand Down
12 changes: 1 addition & 11 deletions src/Providers/TwilioProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final class TwilioProvider extends ServiceProvider implements DeferrableProvider
*
* @return array<string|class-string>
*/
public function provides()
public function provides(): array
{
return [
ConnectionManager::class,
Expand All @@ -37,8 +37,6 @@ public function provides()

/**
* Bootstrap any application services.
*
* @return void
*/
public function boot(): void
{
Expand All @@ -52,8 +50,6 @@ public function boot(): void

/**
* Register any application services.
*
* @return void
*/
public function register(): void
{
Expand All @@ -66,8 +62,6 @@ public function register(): void

/**
* Registers the binding for the connection manager.
*
* @return void
*/
private function registerConnectionManager(): void
{
Expand All @@ -83,8 +77,6 @@ static function (Application $app): ConnectionManager {

/**
* Registers the binding for the HTTP client.
*
* @return void
*/
private function registerHttpClient(): void
{
Expand All @@ -109,8 +101,6 @@ static function (Application $app): TwilioHttpClient {

/**
* Registers the binding for the notification channel.
*
* @return void
*/
private function registerNotificationChannel(): void
{
Expand Down

0 comments on commit a4dded5

Please sign in to comment.