Skip to content

Commit bc5b568

Browse files
authored
Merge pull request #60 from RyanDaDeng/analysis-7aPdBE
Apply fixes from StyleCI
2 parents b9f2637 + 822172f commit bc5b568

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

src/Core/GuzzleRequestClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
namespace TimeHunter\LaravelGoogleReCaptchaV3\Core;
1010

1111
use GuzzleHttp\Client;
12-
use Illuminate\Support\Facades\Lang;
1312
use GuzzleHttp\Exception\ClientException;
1413
use GuzzleHttp\Exception\ConnectException;
14+
use Illuminate\Support\Facades\Lang;
1515
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\RequestClientInterface;
1616

1717
class GuzzleRequestClient implements RequestClientInterface

src/GoogleReCaptchaV3.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
namespace TimeHunter\LaravelGoogleReCaptchaV3;
1010

1111
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
12-
use TimeHunter\LaravelGoogleReCaptchaV3\Services\GoogleReCaptchaV3Service;
1312
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\ReCaptchaConfigV3Interface;
13+
use TimeHunter\LaravelGoogleReCaptchaV3\Services\GoogleReCaptchaV3Service;
1414

1515
class GoogleReCaptchaV3
1616
{

src/Providers/GoogleReCaptchaV3ServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
namespace TimeHunter\LaravelGoogleReCaptchaV3\Providers;
44

55
use Illuminate\Support\ServiceProvider;
6-
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
6+
use TimeHunter\LaravelGoogleReCaptchaV3\Configurations\ReCaptchaConfigV3;
77
use TimeHunter\LaravelGoogleReCaptchaV3\Core\CurlRequestClient;
88
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
9-
use TimeHunter\LaravelGoogleReCaptchaV3\Configurations\ReCaptchaConfigV3;
9+
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
10+
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\ReCaptchaConfigV3Interface;
1011
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\RequestClientInterface;
1112
use TimeHunter\LaravelGoogleReCaptchaV3\Services\GoogleReCaptchaV3Service;
12-
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\ReCaptchaConfigV3Interface;
1313

1414
class GoogleReCaptchaV3ServiceProvider extends ServiceProvider
1515
{

src/Services/GoogleReCaptchaV3Service.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
use Illuminate\Support\Facades\Lang;
1212
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
13-
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\RequestClientInterface;
1413
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\ReCaptchaConfigV3Interface;
14+
use TimeHunter\LaravelGoogleReCaptchaV3\Interfaces\RequestClientInterface;
1515

1616
class GoogleReCaptchaV3Service
1717
{

tests/ConfigTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
namespace TimeHunter\Tests;
44

5-
use PHPUnit\Framework\TestCase;
65
use Illuminate\Support\Facades\Lang;
7-
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
8-
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
9-
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
6+
use PHPUnit\Framework\TestCase;
107
use TimeHunter\LaravelGoogleReCaptchaV3\Configurations\ReCaptchaConfigV3;
8+
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
9+
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
10+
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
1111
use TimeHunter\LaravelGoogleReCaptchaV3\Services\GoogleReCaptchaV3Service;
1212

1313
class ConfigTest extends TestCase

tests/RequestTest.php

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

55
use PHPUnit\Framework\TestCase;
66
use TimeHunter\LaravelGoogleReCaptchaV3\Core\CurlRequestClient;
7-
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
87
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
8+
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
99

1010
class RequestTest extends TestCase
1111
{

tests/ScoreTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
namespace TimeHunter\Tests;
44

55
use PHPUnit\Framework\TestCase;
6-
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
7-
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
8-
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
96
use TimeHunter\LaravelGoogleReCaptchaV3\Configurations\ReCaptchaConfigV3;
7+
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GoogleReCaptchaV3Response;
8+
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
9+
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
1010
use TimeHunter\LaravelGoogleReCaptchaV3\Services\GoogleReCaptchaV3Service;
1111

1212
class ScoreTest extends TestCase

tests/ViewTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
namespace TimeHunter\Tests;
44

55
use PHPUnit\Framework\TestCase;
6-
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
7-
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
86
use TimeHunter\LaravelGoogleReCaptchaV3\Configurations\ReCaptchaConfigV3;
7+
use TimeHunter\LaravelGoogleReCaptchaV3\Core\GuzzleRequestClient;
8+
use TimeHunter\LaravelGoogleReCaptchaV3\GoogleReCaptchaV3;
99
use TimeHunter\LaravelGoogleReCaptchaV3\Services\GoogleReCaptchaV3Service;
1010

1111
class ViewTest extends TestCase

0 commit comments

Comments
 (0)