Skip to content

Commit fe79370

Browse files
Fixed typo in classname
1 parent 81c2f2d commit fe79370

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/templateCopy/fileHandler/RenderWithTwigAndSumpWithSymfonyFilesystem.php renamed to src/templateCopy/fileHandler/RenderWithTwigAndDumpWithSymfonyFilesystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* Uses twig to replace the placeholders in the file, symfony filesystem to save the twig output into the file and a variable replace to replace all variables
3131
* in the path
3232
*/
33-
final class RenderWithTwigAndSumpWithSymfonyFilesystem implements iFileHandler {
33+
final class RenderWithTwigAndDumpWithSymfonyFilesystem implements iFileHandler {
3434

3535
public function __construct(public Filesystem $filesystem, public iVariableReplacer $variableReplacer, public Environment $twig) { }
3636

test/templateCopy/fileHandler/RenderWithTwigAndSumpWithSymfonyFilesystemTest.php renamed to test/templateCopy/fileHandler/RenderWithTwigAndDumpWithSymfonyFilesystemTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,22 @@
1818

1919
namespace de\codenamephp\installer\test\templateCopy\fileHandler;
2020

21-
use de\codenamephp\installer\templateCopy\fileHandler\RenderWithTwigAndSumpWithSymfonyFilesystem;
21+
use de\codenamephp\installer\templateCopy\fileHandler\RenderWithTwigAndDumpWithSymfonyFilesystem;
2222
use de\codenamephp\installer\templateCopy\variableReplacer\iVariableReplacer;
2323
use PHPUnit\Framework\TestCase;
2424
use Symfony\Component\Filesystem\Filesystem;
2525
use Twig\Environment;
2626

27-
class RenderWithTwigAndSumpWithSymfonyFilesystemTest extends TestCase {
27+
class RenderWithTwigAndDumpWithSymfonyFilesystemTest extends TestCase {
2828

29-
private RenderWithTwigAndSumpWithSymfonyFilesystem $sut;
29+
private RenderWithTwigAndDumpWithSymfonyFilesystem $sut;
3030

3131
protected function setUp() : void {
3232
$filesystem = $this->createMock(Filesystem::class);
3333
$variableReplacer = $this->createMock(iVariableReplacer::class);
3434
$twig = $this->createMock(Environment::class);
3535

36-
$this->sut = new RenderWithTwigAndSumpWithSymfonyFilesystem($filesystem, $variableReplacer, $twig);
36+
$this->sut = new RenderWithTwigAndDumpWithSymfonyFilesystem($filesystem, $variableReplacer, $twig);
3737
}
3838

3939
public function testHandle() : void {

0 commit comments

Comments
 (0)