Skip to content

Commit 57d1410

Browse files
committed
Fix deprecated testing getFixturesDir should be getFixturesDirectory
Signed-off-by: William Desportes <[email protected]>
1 parent a7e16a7 commit 57d1410

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

test/I18nExtensionMoTranslatorDebugTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function getExtensions(): array
3232
];
3333
}
3434

35-
public function getFixturesDir(): string
35+
protected static function getFixturesDirectory(): string
3636
{
3737
return __DIR__ . '/Fixtures/';
3838
}

test/I18nExtensionMoTranslatorSandboxTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function getExtensions(): array
4141
];
4242
}
4343

44-
public function getFixturesDir(): string
44+
protected static function getFixturesDirectory(): string
4545
{
4646
return __DIR__ . '/FixturesWithSandbox/';
4747
}

test/I18nExtensionMoTranslatorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getExtensions(): array
3131
];
3232
}
3333

34-
public function getFixturesDir(): string
34+
protected static function getFixturesDirectory(): string
3535
{
3636
return __DIR__ . '/Fixtures/';
3737
}

test/I18nExtensionSandboxTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function getExtensions(): array
3535
];
3636
}
3737

38-
public function getFixturesDir(): string
38+
protected static function getFixturesDirectory(): string
3939
{
4040
return __DIR__ . '/FixturesWithSandbox/';
4141
}

test/I18nExtensionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function getExtensions(): array
2525
];
2626
}
2727

28-
public function getFixturesDir(): string
28+
protected static function getFixturesDirectory(): string
2929
{
3030
return __DIR__ . '/Fixtures/';
3131
}

0 commit comments

Comments
 (0)