Skip to content

Commit

Permalink
Merge pull request #14 from spatie/analysis-q2O1MB
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
rubenvanassche authored Jul 8, 2019
2 parents 4849893 + cdb30e8 commit 8e74174
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Exceptions/InvalidConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use Exception;
use Spatie\WebhookClient\ProcessWebhookJob;
use Spatie\WebhookClient\WebhookStore\WebhookStore;
use Spatie\WebhookClient\WebhookProfile\WebhookProfile;
use Spatie\WebhookClient\SignatureValidator\SignatureValidator;
use Spatie\WebhookClient\WebhookStore\WebhookStore;

class InvalidConfig extends Exception
{
Expand Down
2 changes: 1 addition & 1 deletion src/WebhookConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
namespace Spatie\WebhookClient;

use Spatie\WebhookClient\Exceptions\InvalidConfig;
use Spatie\WebhookClient\WebhookStore\WebhookStore;
use Spatie\WebhookClient\WebhookProfile\WebhookProfile;
use Spatie\WebhookClient\SignatureValidator\SignatureValidator;
use Spatie\WebhookClient\WebhookStore\WebhookStore;

class WebhookConfig
{
Expand Down
1 change: 0 additions & 1 deletion src/WebhookProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ protected function guardAgainstInvalidSignature()
return $this;
}


protected function processWebhook(WebhookCall $webhookCall): void
{
try {
Expand Down
2 changes: 1 addition & 1 deletion tests/WebhookConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
use Spatie\WebhookClient\WebhookConfig;
use Spatie\WebhookClient\Models\WebhookCall;
use Spatie\WebhookClient\Exceptions\InvalidConfig;
use Spatie\WebhookClient\WebhookStore\DefaultWebhookStore;
use Spatie\WebhookClient\SignatureValidator\DefaultSignatureValidator;
use Spatie\WebhookClient\Tests\TestClasses\ProcessWebhookJobTestClass;
use Spatie\WebhookClient\WebhookProfile\ProcessEverythingWebhookProfile;
use Spatie\WebhookClient\WebhookStore\DefaultWebhookStore;

class WebhookConfigTest extends TestCase
{
Expand Down

0 comments on commit 8e74174

Please sign in to comment.