Skip to content

Commit

Permalink
fix type in namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Alavi committed Apr 9, 2021
1 parent c6ba9ad commit f29bab7
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions Actions/SocialLoginAction.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Actions;
namespace App\Containers\VendorSection\SocialAuth\Actions;

use Apiato\Core\Foundation\Facades\Apiato;
use App\Contaienrs\VendorSection\SocialAuth\UI\API\Requests\ApiAuthenticateRequest;
use App\Containers\VendorSection\SocialAuth\UI\API\Requests\ApiAuthenticateRequest;
use App\Ship\Parents\Actions\Action;
use Illuminate\Support\Facades\Config;

Expand Down
2 changes: 1 addition & 1 deletion Exceptions/AccountFailedException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Exceptions;
namespace App\Containers\VendorSection\SocialAuth\Exceptions;

use App\Ship\Parents\Exceptions\Exception;
use Symfony\Component\HttpFoundation\Response;
Expand Down
2 changes: 1 addition & 1 deletion Exceptions/UnsupportedSocialAuthProviderException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Exceptions;
namespace App\Containers\VendorSection\SocialAuth\Exceptions;

use App\Ship\Parents\Exceptions\Exception;
use Symfony\Component\HttpFoundation\Response;
Expand Down
2 changes: 1 addition & 1 deletion Providers/MainServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Providers;
namespace App\Containers\VendorSection\SocialAuth\Providers;

use App\Ship\Parents\Providers\MainProvider;

Expand Down
2 changes: 1 addition & 1 deletion Tasks/ApiLoginFromUserTask.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Tasks;
namespace App\Containers\VendorSection\SocialAuth\Tasks;

use App\Containers\User\Models\User;
use App\Ship\Parents\Tasks\Task;
Expand Down
4 changes: 2 additions & 2 deletions Tasks/CreateUserBySocialProfileTask.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Tasks;
namespace App\Containers\VendorSection\SocialAuth\Tasks;

use App\Contaienrs\VendorSection\SocialAuth\Exceptions\AccountFailedException;
use App\Containers\VendorSection\SocialAuth\Exceptions\AccountFailedException;
use App\Containers\User\Data\Repositories\UserRepository;
use App\Ship\Parents\Tasks\Task;
use Exception;
Expand Down
2 changes: 1 addition & 1 deletion Tasks/FindSocialUserTask.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Tasks;
namespace App\Containers\VendorSection\SocialAuth\Tasks;

use App\Containers\User\Data\Repositories\UserRepository;
use App\Ship\Parents\Tasks\Task;
Expand Down
4 changes: 2 additions & 2 deletions Tasks/FindUserSocialProfileTask.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Tasks;
namespace App\Containers\VendorSection\SocialAuth\Tasks;

use App\Contaienrs\VendorSection\SocialAuth\Exceptions\UnsupportedSocialAuthProviderException;
use App\Containers\VendorSection\SocialAuth\Exceptions\UnsupportedSocialAuthProviderException;
use App\Ship\Parents\Tasks\Task;
use Laravel\Socialite\Facades\Socialite;

Expand Down
2 changes: 1 addition & 1 deletion Tasks/UpdateUserSocialProfileTask.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\Tasks;
namespace App\Containers\VendorSection\SocialAuth\Tasks;

use App\Containers\User\Data\Repositories\UserRepository;
use App\Ship\Exceptions\UpdateResourceFailedException;
Expand Down
4 changes: 2 additions & 2 deletions UI/API/Controllers/Controller.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\UI\API\Controllers;
namespace App\Containers\VendorSection\SocialAuth\UI\API\Controllers;

use Apiato\Core\Foundation\Facades\Apiato;
use App\Contaienrs\VendorSection\SocialAuth\UI\API\Requests\ApiAuthenticateRequest;
use App\Containers\VendorSection\SocialAuth\UI\API\Requests\ApiAuthenticateRequest;
use App\Containers\User\UI\API\Transformers\UserTransformer;
use App\Ship\Parents\Controllers\ApiController;

Expand Down
2 changes: 1 addition & 1 deletion UI/API/Requests/ApiAuthenticateRequest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\UI\API\Requests;
namespace App\Containers\VendorSection\SocialAuth\UI\API\Requests;

use App\Ship\Parents\Requests\Request;

Expand Down
2 changes: 1 addition & 1 deletion UI/API/Routes/AuthenticateAll.v1.private.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
}
*/

use App\Contaienrs\VendorSection\SocialAuth\UI\API\Controllers\Controller;
use App\Containers\VendorSection\SocialAuth\UI\API\Controllers\Controller;
use Illuminate\Support\Facades\Route;

Route::post('auth/{provider}', [Controller::class, 'authenticateAll'])->name('api_socialAuth_social_auth');
2 changes: 1 addition & 1 deletion UI/WEB/Controllers/Controller.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Contaienrs\VendorSection\SocialAuth\UI\WEB\Controllers;
namespace App\Containers\VendorSection\SocialAuth\UI\WEB\Controllers;

use App\Ship\Parents\Controllers\WebController;
use Laravel\Socialite\Contracts\User;
Expand Down
2 changes: 1 addition & 1 deletion UI/WEB/Routes/GetProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use App\Contaienrs\VendorSection\SocialAuth\UI\WEB\Controllers\Controller;
use App\Containers\VendorSection\SocialAuth\UI\WEB\Controllers\Controller;
use Illuminate\Support\Facades\Route;

// provider login redirect (WEB)
Expand Down
2 changes: 1 addition & 1 deletion UI/WEB/Routes/ProviderCallback.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

use App\Contaienrs\VendorSection\SocialAuth\UI\WEB\Controllers\Controller;
use App\Containers\VendorSection\SocialAuth\UI\WEB\Controllers\Controller;
use Illuminate\Support\Facades\Route;

// provider callback handler
Expand Down

0 comments on commit f29bab7

Please sign in to comment.