Skip to content

Commit

Permalink
Merge pull request #25 from michael-rubel/lec-10.x-1
Browse files Browse the repository at this point in the history
Bump LEC version 🏷
  • Loading branch information
michael-rubel authored Nov 22, 2022
2 parents 6f62cf1 + 43fef32 commit d4465d3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"php": "^8.0",
"ext-intl": "*",
"illuminate/contracts": "^9.7",
"michael-rubel/laravel-enhanced-container": "^9.2",
"michael-rubel/laravel-enhanced-container": "^10.0",
"spatie/laravel-package-tools": "^1.12"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion tests/MaskStringFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function testFormatBehaviorWithNullOrEmpty()
/** @test */
public function testCanExtendFormatterBinding()
{
extend(MaskStringFormatter::class, function ($formatter) {
$this->app->extend(MaskStringFormatter::class, function ($formatter) {
$formatter->string = '[email protected]';
$formatter->character = '%';
$formatter->index = 5;
Expand Down
2 changes: 1 addition & 1 deletion tests/TableColumnFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function testFormatBehaviorWithNullOrEmpty()
/** @test */
public function testCanExtendFormatterBinding()
{
extend(TableColumnFormatter::class, function ($formatter) {
$this->app->extend(TableColumnFormatter::class, function ($formatter) {
$formatter->string = 'created_at';

$this->assertStringContainsString('created_at', $formatter->string);
Expand Down
2 changes: 1 addition & 1 deletion tests/TaxNumberFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function testFormatBehaviorWithNullOrEmpty()
/** @test */
public function testCanExtendTaxNumberFormatter()
{
extend(TaxNumberFormatter::class, function ($formatter) {
$this->app->extend(TaxNumberFormatter::class, function ($formatter) {
$formatter->tax_number = 'UA0123456789';
$formatter->country = 'UA';

Expand Down

0 comments on commit d4465d3

Please sign in to comment.