Skip to content

Commit

Permalink
Auto service provider
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Rocha committed Apr 30, 2021
1 parent d43e155 commit c728af1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Console/Commands/DiscordNotificationCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace frf\DiscordNotification\Console\Commands;

use frf\DiscordNotification\Services\DiscordService;
use Frf\DiscordNotification\Services\DiscordService;
use Illuminate\Console\Command;

class DiscordNotificationCommand extends Command
Expand Down
2 changes: 1 addition & 1 deletion src/NotificationServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace frf\DiscordNotification;

use frf\DiscordNotification\Console\Commands\DiscordNotificationCommand;
use Frf\DiscordNotification\Console\Commands\DiscordNotificationCommand;
use Illuminate\Support\ServiceProvider;

class NotificationServiceProvider extends ServiceProvider
Expand Down
2 changes: 1 addition & 1 deletion src/Services/DiscordService.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace frf\DiscordNotification\Services;
namespace Frf\DiscordNotification\Services;

use Illuminate\Support\Facades\Http;

Expand Down

0 comments on commit c728af1

Please sign in to comment.