Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints authored and github-actions[bot] committed Aug 30, 2023
1 parent 79bee82 commit ef0234a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion src/VatCalculator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Illuminate\Contracts\Config\Repository;
use Mpociot\VatCalculator\Exceptions\VATCheckUnavailableException;
use Mpociot\VatCalculator\Util\ConfigWrapper;
use SoapClient;
use SoapFault;

Expand Down
14 changes: 7 additions & 7 deletions tests/VatCalculatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function testCalculateVatWithPredefinedRulesOverwrittenByConfiguration()
->andReturn([
'rules' => [
'DE' => 0.50,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand All @@ -117,7 +117,7 @@ public function testCalculatVatWithCountryDirectSet()
->andReturn([
'rules' => [
'DE' => 0.19,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand Down Expand Up @@ -151,7 +151,7 @@ public function testCalculatVatWithCountryPreviousSet()
->andReturn([
'rules' => [
'DE' => 0.19,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand Down Expand Up @@ -615,7 +615,7 @@ public function testShouldCollectVATFromConfig()
->andReturn([
'rules' => [
'TEST' => 0.19,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand Down Expand Up @@ -690,7 +690,7 @@ public function testCalculateNetPriceWithPredefinedRulesOverwrittenByConfigurati
->andReturn([
'rules' => [
'DE' => 0.50,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand All @@ -712,7 +712,7 @@ public function testCalculateNetPriceWithCountryDirectSet()
->andReturn([
'rules' => [
'DE' => 0.19,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand Down Expand Up @@ -747,7 +747,7 @@ public function testCalculateNetPriceWithCountryPreviousSet()
->andReturn([
'rules' => [
'DE' => 0.19,
]
],
]);

$vatCalculator = new VatCalculator($config);
Expand Down

0 comments on commit ef0234a

Please sign in to comment.