Skip to content

Commit 8251289

Browse files
authored
Add service folder (#4)
1 parent b613493 commit 8251289

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

app/Actions/App/StoreAuthorize.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use App\Actions\BaseAction;
66
use App\Models\User;
7-
use App\SallaAuthService;
7+
use App\Services\SallaAuthService;
88
use Illuminate\Support\Facades\Hash;
99
use Illuminate\Support\Str;
1010
use League\OAuth2\Client\Token\AccessToken;

app/Console/Commands/ServeRemoteCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace App\Console\Commands;
44

5-
use App\SallaAuthService;
5+
use App\Services\SallaAuthService;
66
use Illuminate\Console\Command;
77
use Illuminate\Support\Str;
88
use Symfony\Component\Console\Output\OutputInterface;

app/Http/Controllers/DashboardController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace App\Http\Controllers;
44

5-
use App\SallaAuthService;
5+
use App\Services\SallaAuthService;
66
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;
77

88
class DashboardController extends Controller

app/Http/Controllers/OAuthController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace App\Http\Controllers;
44

5-
use App\SallaAuthService;
5+
use App\Services\SallaAuthService;
66
use Illuminate\Http\Request;
77
use League\OAuth2\Client\Provider\Exception\IdentityProviderException;
88

app/Providers/AppServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace App\Providers;
44

5-
use App\SallaAuthService;
5+
use App\Services\SallaAuthService;
66
use Illuminate\Support\ServiceProvider;
77

88
class AppServiceProvider extends ServiceProvider
File renamed without changes.

0 commit comments

Comments
 (0)