Skip to content

Commit

Permalink
Merge pull request #12 from xefi/feature/payment-to-financial
Browse files Browse the repository at this point in the history
♻️ payment to financial
  • Loading branch information
GautierDele authored Oct 21, 2024
2 parents 20eee39 + 6e512ba commit 2916b13
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Xefi\Faker\Calculators\Iban;
use Xefi\Faker\Extensions\Traits\HasLocale;

class PaymentExtension extends Extension
class FinancialExtension extends Extension
{
use HasLocale;

Expand Down
4 changes: 2 additions & 2 deletions src/FakerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace Xefi\Faker;

use Xefi\Faker\Extensions\DateTimeExtension;
use Xefi\Faker\Extensions\FinancialExtension;
use Xefi\Faker\Extensions\HashExtension;
use Xefi\Faker\Extensions\HtmlExtension;
use Xefi\Faker\Extensions\LoremExtension;
use Xefi\Faker\Extensions\NumbersExtension;
use Xefi\Faker\Extensions\PaymentExtension;
use Xefi\Faker\Extensions\PersonExtension;
use Xefi\Faker\Extensions\StringsExtension;
use Xefi\Faker\Providers\Provider;
Expand All @@ -24,7 +24,7 @@ public function boot(): void
HashExtension::class,
DateTimeExtension::class,
PersonExtension::class,
PaymentExtension::class,
FinancialExtension::class,
]);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Xefi\Faker\Calculators\Iban;
use Xefi\Faker\Tests\Unit\Extensions\TestCase;

final class PaymentExtensionTest extends TestCase
final class FinancialExtensionTest extends TestCase
{
#[RepeatedTest(5)]
public function testIban()
Expand Down

0 comments on commit 2916b13

Please sign in to comment.