Skip to content

Commit

Permalink
Remove a forgotten comment
Browse files Browse the repository at this point in the history
  • Loading branch information
niladam committed Jul 28, 2022
1 parent be85e6a commit f1b2621
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/LaravelSendsmsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ public function register()
{
$this->app->singleton(
LaravelSendsms::class,
fn () => new LaravelSendsms(config('laravel-sendsms'))
fn() => new LaravelSendsms(config("laravel-sendsms"))
);

$this->app->bind('laravel-sendsms', LaravelSendsms::class);
$this->app->bind("laravel-sendsms", LaravelSendsms::class);

$this->app->singleton("command.sendsms", function () {
return new LaravelSendsmsCommand();
Expand All @@ -30,13 +30,12 @@ public function boot()
if ($this->app->runningInConsole()) {
$this->publishes(
[
__DIR__.'/../config/sendsms.php' => config_path(
'laravel-sendsms.php'
__DIR__ . "/../config/sendsms.php" => config_path(
"laravel-sendsms.php"
),
],
'config'
"config"
);
// $this->commands([LaravelSendsmsCommand::class]);
}
}

Expand Down

0 comments on commit f1b2621

Please sign in to comment.